Mesh Refinement

In this tutorial, we show how we can use mesh refinement to improve the quality of a mesh by inserting more points. In this package, we allow for constant area and angle constraints, and also for custom constraints based on a user-provided function. You can also limit the maximum number of points. Moreover, any type of triangulation can be provided, regardless of whether the triangulation is unconstrained or triangulations, and regardless of the number of holes and domains. Curve-bounded domains, not included in this tutorial, can also be refined as discussed in this tutorial.

Let us start by loading in the packages we will need.

using DelaunayTriangulation
using CairoMakie
using StableRNGs

Unconstrained triangulation

Let us start with a simple example, refining an unconstrained triangulation. We will constrain the triangulation such that the minimum angle is 30 degrees, and the maximum area of a triangulation is 1% of the triangulation's total area. Note that below we need to make sure points is mutable, else it is not possible to push points into the triangulation. Here we use a vector, but you could also use e.g. an ElasticMatrix from ElasticArrays.jl.

rng = StableRNG(123)
x = rand(rng, 50)
y = rand(rng, 50)
points = tuple.(x, y)
tri = triangulate(points; rng)
orig_tri = deepcopy(tri)
A = get_area(tri)
refine!(tri; min_angle=30.0, max_area=0.01A, rng)
Delaunay Triangulation.
   Number of vertices: 293
   Number of triangles: 522
   Number of edges: 814
   Has boundary nodes: false
   Has ghost triangles: true
   Curve-bounded: false
   Weighted: false
   Constrained: false

The refine! function operates on tri in-place. If we wanted to review the statistics of the refined mesh, we can use statistics:

statistics(tri)
Delaunay Triangulation Statistics.
   Triangulation area: 0.6676219360027273
   Number of vertices: 294
   Number of solid vertices: 293
   Number of ghost vertices: 1
   Number of edges: 876
   Number of solid edges: 814
   Number of ghost edges: 62
   Number of triangles: 584
   Number of solid triangles: 522
   Number of ghost triangles: 62
   Number of boundary segments: 0
   Number of interior segments: 0
   Number of segments: 0
   Number of convex hull vertices: 62
   Smallest angle: 30.093123918976033°
   Largest angle: 115.1681501036418°
   Smallest area: 2.101315544214238e-5
   Largest area: 0.006504759798840958
   Smallest radius-edge ratio: 0.5783859342412219
   Largest radius-edge ratio: 0.997194082313877

As we can see, the maximum area of a triangle is about 0.0064, which is indeed less than 1% of the triangulation's area, which is about 0.0067. Moreover, the smallest angle is indeed greater than 30.

Let us compare the triangulation pre- and post-refinement.

fig, ax, sc = triplot(orig_tri, axis=(title="Pre-refinement",))
ax = Axis(fig[1, 2], title="Post-refinement")
triplot!(ax, tri)
fig

The triangulation is now much finer. There are still some parts with many more triangles than other regions, but these are mostly near a boundary or where was a cluster of random points. If we wanted, we could refine again to try and improve this.

refine!(tri; min_angle=30.0, max_area=0.001A, rng) # 0.1% instead of 1%
fig, ax, sc = triplot(tri)
fig

The quality has now been improved. We could also try improving the minimum angle further, but even 30 is a bit closer to the limit of convergence (which is about 33.9 degrees). For example, if we try a minimum angle of 35 degrees, the algorithm just doesn't even converge, instead it reaches the maximum number of points.

test_tri = deepcopy(tri)
refine!(test_tri; min_angle=35.0, max_area=0.001A, max_points = 5_000, rng) # 20_000 so that it doesn't just keep going
statistics(test_tri)
Delaunay Triangulation Statistics.
   Triangulation area: 0.6676219360027283
   Number of vertices: 5001
   Number of solid vertices: 5000
   Number of ghost vertices: 1
   Number of edges: 14997
   Number of solid edges: 14855
   Number of ghost edges: 142
   Number of triangles: 9998
   Number of solid triangles: 9856
   Number of ghost triangles: 142
   Number of boundary segments: 0
   Number of interior segments: 0
   Number of segments: 0
   Number of convex hull vertices: 142
   Smallest angle: 29.178318890457142°
   Largest angle: 117.10742856878393°
   Smallest area: 3.296647038397725e-6
   Largest area: 0.0006659872224699419
   Smallest radius-edge ratio: 0.5773574317028193
   Largest radius-edge ratio: 1.0255793759836065

As we can see, the smallest angle is about 29 degrees instead of 35 degrees, and there are now 5000 points in the triangulation. The resulting triangulation is given below:

fig, ax, sc = triplot(test_tri)
fig

This is certainly not a suitable triangulation.

One useful figure to look at for these plots are histograms that look at the areas and angles. Looking to tri, we can plot these as follows:

stats = statistics(tri)
fig = Figure(fontsize=33)
areas = get_all_stat(stats, :area) ./ A
angles = first.(get_all_stat(stats, :angles)) # the first is the smallest
ax = Axis(fig[1, 1], xlabel="A/A(Ω)", ylabel="Count", title="Area histogram", width=400, height=400, titlealign=:left)
hist!(ax, areas, bins=0:0.0001:0.0005)
ax = Axis(fig[1, 2], xlabel="θₘᵢₙ", ylabel="Count", title="Angle histogram", width=400, height=400, titlealign=:left)
hist!(ax, rad2deg.(angles), bins=20:2:60)
vlines!(ax, [30.0], color=:red)
resize_to_layout!(fig)
fig

We see that indeed many of the triangle areas are very small, and the angles are all greater than 30 degrees.

Constrained triangulation and custom constraints

We now give an example of a constrained triangulation being refined. This is the most common case where the mesh refinement is needed. For this example, we consider an example with holes, but note that any triangulation can be refined, regardless of the type. Here is the triangulation we consider.

n = 100
θ = LinRange(0, 2π, n + 1)
θ = [θ[1:n]; 0]
rev_θ = reverse(θ) # to go from ccw to cw
r₁ = 10.0
r₂ = 5.0
r₃ = 2.5
outer_x, outer_y = r₁ * cos.(θ), r₁ * sin.(θ)
inner_x, inner_y = r₂ * cos.(rev_θ), r₂ * sin.(rev_θ)
innermost_x, innermost_y = r₃ * cos.(θ), r₃ * sin.(θ)
x = [[outer_x], [inner_x], [innermost_x]]
y = [[outer_y], [inner_y], [innermost_y]]
boundary_nodes, points = convert_boundary_points_to_indices(x, y)
rng = StableRNG(456)
tri = triangulate(points; boundary_nodes, rng)
fig, ax, sc = triplot(tri)
fig

Let us now refine this triangulation.

A = get_area(tri)
refine!(tri; min_angle=27.3, max_area=0.01A, rng)
fig, ax, sc = triplot(tri)
fig

We inspect the plot, and we might think that it's perhaps not fine enough. Let's use finer constraints and see what happens. Since refine! operates on tri in-place, refining it again with the constraints below is going to take roughly the same amount of time as if we had refined it with these constraints in the first place.

refine!(tri; min_angle=33.9, max_area=0.001A, rng)
fig, ax, sc = triplot(tri)
fig

This is indeed much better, but notice that the inner hole is much more fine than the outer. This is because we are applying the same area constraint inside and outside, when really we should try and take note of the total contribution to the area that each part of the domain gives. To refine with this in mind, we need to use custom constraints. The function that we use for constraining the area takes the form f(tri, T), where T is the triangle's vertices and tri is the triangulation. It should return true if the triangle should be refined, and false otherwise. Let us define a function such that, instead of applying constraints so that the triangles are limited to 1% of the total triangulation area, we do 0.5% or 0.1% of the area of the inner or outer domain, respectively.

outer_area = π * (r₁^2 - r₂^2)
inner_area = π * r₃^2
function in_inner(p, q, r)
    px, py = getxy(p)
    qx, qy = getxy(q)
    rx, ry = getxy(r)
    cx, cy = (px + qx + rx) / 3, (py + qy + ry) / 3
    rad2 = cx^2 + cy^2
    return rad2 ≤ r₃^2
end
function area_constraint(_tri, T)
    i, j, k = triangle_vertices(T)
    p, q, r = get_point(_tri, i, j, k)
    A = DelaunayTriangulation.triangle_area(p, q, r)
    return in_inner(p, q, r) ? (A ≥ 0.005inner_area) : (A ≥ 0.001outer_area)
end
area_constraint (generic function with 1 method)

Let's now refine. We recompute the triangulation so that we can see the new results.

boundary_nodes, points = convert_boundary_points_to_indices(x, y)
rng = StableRNG(456)
tri = triangulate(points; boundary_nodes, rng)
refine!(tri; min_angle=30.0, custom_constraint=area_constraint, rng)
fig, ax, sc = triplot(tri)
fig

This is now much better, and the two parts of the domain are appropriately refined. Let us extend our custom constraint function to also require that any triangle has minimum angle less than 33 degrees inside the innermost domain, and less than 20 degrees outside the innermost domain.

function angle_constraint(_tri, T)
    i, j, k = triangle_vertices(T)
    p, q, r = get_point(_tri, i, j, k)
    θ = rad2deg(minimum(DelaunayTriangulation.triangle_angles(p, q, r)))
    return in_inner(p, q, r) ? (θ ≤ 33.9) : (θ ≤ 20.0)
end
function custom_constraint(_tri, T)
    return area_constraint(_tri, T) || angle_constraint(_tri, T)
end
boundary_nodes, points = convert_boundary_points_to_indices(x, y)
rng = StableRNG(456)
tri = triangulate(points; boundary_nodes, rng)
refine!(tri; custom_constraint, rng)
fig, ax, sc = triplot(tri)
fig

Indeed, the inner domain is much finer. These examples could be extended to more complicated cases, for example using adaptive mesh refinement for a numerical PDE solution so that triangles are refined based on some a posteriori error estimate, implemented using a custom area constraint like above, or even some refinement based on the triangle's location in space in case of some geospatial application.

Domains with small angles

In the examples considered, none of the boundaries had small angles. When domains have small angles, it is not always possible to satisfy the minimum angle constraints, but the algorithm will still try its best to refine in these locations. Let's consider a complicated example with many small angles. We consider the boundary of Switzerland, as obtained in this NaturalNeighbours.jl example.

using Downloads
using DelimitedFiles
boundary_url = "https://gist.githubusercontent.com/DanielVandH/13687b0918e45a416a5c93cd52c91449/raw/a8da6cdc94859fd66bcff85a2307f0f9cd57a18c/boundary.txt"
boundary_dir = Downloads.download(boundary_url)
boundary = readdlm(boundary_dir, skipstart=6)
boundary_points = [(boundary[i, 1], boundary[i, 2]) for i in axes(boundary, 1)]
reverse!(boundary_points)
5126-element Vector{Tuple{Float64, Float64}}:
 (7.133862520764, 45.871870678164)
 (7.138563027059, 45.871870678164)
 (7.138563027059, 45.876571184459)
 (7.143263533355, 45.876571184459)
 (7.14796403965, 45.876571184459)
 (7.152664545945, 45.876571184459)
 (7.15736505224, 45.876571184459)
 (7.162065558535, 45.876571184459)
 (7.162065558535, 45.871870678164)
 (7.166766064831, 45.871870678164)
 (7.166766064831, 45.867170171868)
 (7.171466571126, 45.867170171868)
 (7.171466571126, 45.862469665573)
 (7.176167077421, 45.862469665573)
 (7.180867583716, 45.862469665573)
 (7.185568090011, 45.862469665573)
 (7.185568090011, 45.857769159278)
 (7.190268596307, 45.857769159278)
 (7.194969102602, 45.857769159278)
 (7.194969102602, 45.862469665573)
 (7.199669608897, 45.862469665573)
 (7.199669608897, 45.867170171868)
 (7.199669608897, 45.871870678164)
 (7.199669608897, 45.876571184459)
 (7.204370115192, 45.876571184459)
 (7.209070621488, 45.876571184459)
 (7.209070621488, 45.881271690754)
 (7.213771127783, 45.881271690754)
 (7.213771127783, 45.885972197049)
 (7.218471634078, 45.885972197049)
 (7.218471634078, 45.890672703344)
 (7.223172140373, 45.890672703344)
 (7.227872646668, 45.890672703344)
 (7.232573152964, 45.890672703344)
 (7.237273659259, 45.890672703344)
 (7.241974165554, 45.890672703344)
 (7.246674671849, 45.890672703344)
 (7.251375178144, 45.890672703344)
 (7.25607568444, 45.890672703344)
 (7.260776190735, 45.890672703344)
 (7.260776190735, 45.89537320964)
 (7.26547669703, 45.89537320964)
 (7.270177203325, 45.89537320964)
 (7.270177203325, 45.900073715935)
 (7.274877709621, 45.900073715935)
 (7.279578215916, 45.900073715935)
 (7.279578215916, 45.90477422223)
 (7.279578215916, 45.909474728525)
 (7.284278722211, 45.909474728525)
 (7.284278722211, 45.91417523482)
 (7.288979228506, 45.91417523482)
 (7.288979228506, 45.918875741116)
 (7.293679734801, 45.918875741116)
 (7.298380241097, 45.918875741116)
 (7.303080747392, 45.918875741116)
 (7.307781253687, 45.918875741116)
 (7.312481759982, 45.918875741116)
 (7.312481759982, 45.91417523482)
 (7.317182266278, 45.91417523482)
 (7.317182266278, 45.909474728525)
 (7.321882772573, 45.909474728525)
 (7.326583278868, 45.909474728525)
 (7.331283785163, 45.909474728525)
 (7.335984291458, 45.909474728525)
 (7.335984291458, 45.91417523482)
 (7.340684797754, 45.91417523482)
 (7.345385304049, 45.91417523482)
 (7.350085810344, 45.91417523482)
 (7.350085810344, 45.909474728525)
 (7.354786316639, 45.909474728525)
 (7.354786316639, 45.90477422223)
 (7.359486822934, 45.90477422223)
 (7.36418732923, 45.90477422223)
 (7.368887835525, 45.90477422223)
 (7.37358834182, 45.90477422223)
 (7.37358834182, 45.900073715935)
 (7.378288848115, 45.900073715935)
 (7.382989354411, 45.900073715935)
 (7.382989354411, 45.89537320964)
 (7.387689860706, 45.89537320964)
 (7.387689860706, 45.900073715935)
 (7.392390367001, 45.900073715935)
 (7.397090873296, 45.900073715935)
 (7.397090873296, 45.90477422223)
 (7.397090873296, 45.909474728525)
 (7.401791379591, 45.909474728525)
 (7.406491885887, 45.909474728525)
 (7.411192392182, 45.909474728525)
 (7.415892898477, 45.909474728525)
 (7.420593404772, 45.909474728525)
 (7.420593404772, 45.91417523482)
 (7.425293911067, 45.91417523482)
 (7.429994417363, 45.91417523482)
 (7.429994417363, 45.918875741116)
 (7.434694923658, 45.918875741116)
 (7.434694923658, 45.923576247411)
 (7.439395429953, 45.923576247411)
 (7.439395429953, 45.928276753706)
 (7.444095936248, 45.928276753706)
 (7.448796442544, 45.928276753706)
 (7.448796442544, 45.932977260001)
 (7.453496948839, 45.932977260001)
 (7.458197455134, 45.932977260001)
 (7.462897961429, 45.932977260001)
 (7.462897961429, 45.937677766297)
 (7.467598467724, 45.937677766297)
 (7.467598467724, 45.932977260001)
 (7.47229897402, 45.932977260001)
 (7.47229897402, 45.937677766297)
 (7.47229897402, 45.942378272592)
 (7.47229897402, 45.947078778887)
 (7.47229897402, 45.951779285182)
 (7.476999480315, 45.951779285182)
 (7.48169998661, 45.951779285182)
 (7.48169998661, 45.956479791477)
 (7.486400492905, 45.956479791477)
 (7.4911009992, 45.956479791477)
 (7.495801505496, 45.956479791477)
 (7.495801505496, 45.961180297773)
 (7.500502011791, 45.961180297773)
 (7.505202518086, 45.961180297773)
 (7.509903024381, 45.961180297773)
 (7.514603530677, 45.961180297773)
 (7.519304036972, 45.961180297773)
 (7.524004543267, 45.961180297773)
 (7.524004543267, 45.956479791477)
 (7.528705049562, 45.956479791477)
 (7.533405555857, 45.956479791477)
 (7.538106062153, 45.956479791477)
 (7.542806568448, 45.956479791477)
 (7.542806568448, 45.961180297773)
 (7.547507074743, 45.961180297773)
 (7.547507074743, 45.965880804068)
 (7.547507074743, 45.970581310363)
 (7.542806568448, 45.970581310363)
 (7.542806568448, 45.975281816658)
 (7.542806568448, 45.979982322953)
 (7.542806568448, 45.984682829249)
 (7.547507074743, 45.984682829249)
 (7.552207581038, 45.984682829249)
 (7.556908087333, 45.984682829249)
 (7.561608593629, 45.984682829249)
 (7.566309099924, 45.984682829249)
 (7.566309099924, 45.989383335544)
 (7.571009606219, 45.989383335544)
 (7.575710112514, 45.989383335544)
 (7.575710112514, 45.984682829249)
 (7.58041061881, 45.984682829249)
 (7.58041061881, 45.979982322953)
 (7.58041061881, 45.975281816658)
 (7.585111125105, 45.975281816658)
 (7.585111125105, 45.970581310363)
 (7.5898116314, 45.970581310363)
 (7.594512137695, 45.970581310363)
 (7.59921264399, 45.970581310363)
 (7.603913150286, 45.970581310363)
 (7.608613656581, 45.970581310363)
 (7.613314162876, 45.970581310363)
 (7.618014669171, 45.970581310363)
 (7.622715175467, 45.970581310363)
 (7.627415681762, 45.970581310363)
 (7.632116188057, 45.970581310363)
 (7.636816694352, 45.970581310363)
 (7.641517200647, 45.970581310363)
 (7.646217706943, 45.970581310363)
 (7.646217706943, 45.975281816658)
 (7.650918213238, 45.975281816658)
 (7.655618719533, 45.975281816658)
 (7.660319225828, 45.975281816658)
 (7.665019732123, 45.975281816658)
 (7.669720238419, 45.975281816658)
 (7.669720238419, 45.970581310363)
 (7.674420744714, 45.970581310363)
 (7.674420744714, 45.965880804068)
 (7.679121251009, 45.965880804068)
 (7.679121251009, 45.961180297773)
 (7.679121251009, 45.956479791477)
 (7.683821757304, 45.956479791477)
 (7.6885222636, 45.956479791477)
 (7.693222769895, 45.956479791477)
 (7.69792327619, 45.956479791477)
 (7.69792327619, 45.951779285182)
 (7.702623782485, 45.951779285182)
 (7.70732428878, 45.951779285182)
 (7.70732428878, 45.947078778887)
 (7.70732428878, 45.942378272592)
 (7.70732428878, 45.937677766297)
 (7.70732428878, 45.932977260001)
 (7.712024795076, 45.932977260001)
 (7.712024795076, 45.928276753706)
 (7.716725301371, 45.928276753706)
 (7.716725301371, 45.923576247411)
 (7.721425807666, 45.923576247411)
 (7.726126313961, 45.923576247411)
 (7.730826820256, 45.923576247411)
 (7.735527326552, 45.923576247411)
 (7.735527326552, 45.928276753706)
 (7.740227832847, 45.928276753706)
 (7.740227832847, 45.932977260001)
 (7.744928339142, 45.932977260001)
 (7.744928339142, 45.937677766297)
 (7.749628845437, 45.937677766297)
 (7.749628845437, 45.942378272592)
 (7.754329351733, 45.942378272592)
 (7.754329351733, 45.937677766297)
 (7.759029858028, 45.937677766297)
 (7.763730364323, 45.937677766297)
 (7.768430870618, 45.937677766297)
 (7.768430870618, 45.932977260001)
 (7.773131376913, 45.932977260001)
 (7.777831883209, 45.932977260001)
 (7.777831883209, 45.928276753706)
 (7.782532389504, 45.928276753706)
 (7.787232895799, 45.928276753706)
 (7.787232895799, 45.923576247411)
 (7.791933402094, 45.923576247411)
 (7.796633908389, 45.923576247411)
 (7.796633908389, 45.918875741116)
 (7.801334414685, 45.918875741116)
 (7.80603492098, 45.918875741116)
 (7.80603492098, 45.923576247411)
 (7.810735427275, 45.923576247411)
 (7.81543593357, 45.923576247411)
 (7.820136439866, 45.923576247411)
 (7.824836946161, 45.923576247411)
 (7.829537452456, 45.923576247411)
 (7.834237958751, 45.923576247411)
 (7.838938465046, 45.923576247411)
 (7.843638971342, 45.923576247411)
 (7.848339477637, 45.923576247411)
 (7.848339477637, 45.918875741116)
 (7.853039983932, 45.918875741116)
 (7.857740490227, 45.918875741116)
 (7.862440996522, 45.918875741116)
 (7.867141502818, 45.918875741116)
 (7.871842009113, 45.918875741116)
 (7.871842009113, 45.923576247411)
 (7.876542515408, 45.923576247411)
 (7.876542515408, 45.928276753706)
 (7.871842009113, 45.928276753706)
 (7.871842009113, 45.932977260001)
 (7.867141502818, 45.932977260001)
 (7.867141502818, 45.937677766297)
 (7.867141502818, 45.942378272592)
 (7.871842009113, 45.942378272592)
 (7.871842009113, 45.947078778887)
 (7.871842009113, 45.951779285182)
 (7.876542515408, 45.951779285182)
 (7.876542515408, 45.956479791477)
 (7.876542515408, 45.961180297773)
 (7.881243021703, 45.961180297773)
 (7.881243021703, 45.965880804068)
 (7.881243021703, 45.970581310363)
 (7.876542515408, 45.970581310363)
 (7.876542515408, 45.975281816658)
 (7.881243021703, 45.975281816658)
 (7.885943527999, 45.975281816658)
 (7.890644034294, 45.975281816658)
 (7.890644034294, 45.979982322953)
 (7.895344540589, 45.979982322953)
 (7.895344540589, 45.984682829249)
 (7.900045046884, 45.984682829249)
 (7.900045046884, 45.989383335544)
 (7.904745553179, 45.989383335544)
 (7.904745553179, 45.994083841839)
 (7.909446059475, 45.994083841839)
 (7.909446059475, 45.998784348134)
 (7.91414656577, 45.998784348134)
 (7.918847072065, 45.998784348134)
 (7.92354757836, 45.998784348134)
 (7.928248084656, 45.998784348134)
 (7.932948590951, 45.998784348134)
 (7.937649097246, 45.998784348134)
 (7.942349603541, 45.998784348134)
 (7.947050109836, 45.998784348134)
 (7.951750616132, 45.998784348134)
 (7.956451122427, 45.998784348134)
 (7.961151628722, 45.998784348134)
 (7.965852135017, 45.998784348134)
 (7.970552641312, 45.998784348134)
 (7.975253147608, 45.998784348134)
 (7.979953653903, 45.998784348134)
 (7.984654160198, 45.998784348134)
 (7.989354666493, 45.998784348134)
 (7.994055172789, 45.998784348134)
 (7.994055172789, 46.00348485443)
 (7.998755679084, 46.00348485443)
 (7.998755679084, 46.008185360725)
 (7.998755679084, 46.01288586702)
 (8.003456185379, 46.01288586702)
 (8.008156691674, 46.01288586702)
 (8.012857197969, 46.01288586702)
 (8.012857197969, 46.017586373315)
 (8.012857197969, 46.02228687961)
 (8.017557704265, 46.02228687961)
 (8.017557704265, 46.026987385906)
 (8.017557704265, 46.031687892201)
 (8.017557704265, 46.036388398496)
 (8.02225821056, 46.036388398496)
 (8.02225821056, 46.041088904791)
 (8.026958716855, 46.041088904791)
 (8.026958716855, 46.045789411086)
 (8.03165922315, 46.045789411086)
 (8.03165922315, 46.050489917382)
 (8.026958716855, 46.050489917382)
 (8.026958716855, 46.055190423677)
 (8.026958716855, 46.059890929972)
 (8.026958716855, 46.064591436267)
 (8.02225821056, 46.064591436267)
 (8.02225821056, 46.069291942563)
 (8.02225821056, 46.073992448858)
 (8.02225821056, 46.078692955153)
 (8.026958716855, 46.078692955153)
 (8.026958716855, 46.083393461448)
 (8.03165922315, 46.083393461448)
 (8.03165922315, 46.088093967743)
 (8.03165922315, 46.092794474039)
 (8.03165922315, 46.097494980334)
 (8.036359729445, 46.097494980334)
 (8.036359729445, 46.102195486629)
 (8.041060235741, 46.102195486629)
 (8.045760742036, 46.102195486629)
 (8.050461248331, 46.102195486629)
 (8.055161754626, 46.102195486629)
 (8.059862260922, 46.102195486629)
 (8.064562767217, 46.102195486629)
 (8.064562767217, 46.106895992924)
 (8.069263273512, 46.106895992924)
 (8.073963779807, 46.106895992924)
 (8.078664286102, 46.106895992924)
 (8.083364792398, 46.106895992924)
 (8.088065298693, 46.106895992924)
 (8.092765804988, 46.106895992924)
 (8.097466311283, 46.106895992924)
 (8.097466311283, 46.111596499219)
 (8.102166817578, 46.111596499219)
 (8.106867323874, 46.111596499219)
 (8.106867323874, 46.116297005515)
 (8.111567830169, 46.116297005515)
 (8.116268336464, 46.116297005515)
 (8.116268336464, 46.12099751181)
 (8.116268336464, 46.125698018105)
 (8.116268336464, 46.1303985244)
 (8.120968842759, 46.1303985244)
 (8.120968842759, 46.135099030696)
 (8.125669349055, 46.135099030696)
 (8.13036985535, 46.135099030696)
 (8.135070361645, 46.135099030696)
 (8.13977086794, 46.135099030696)
 (8.144471374235, 46.135099030696)
 (8.149171880531, 46.135099030696)
 (8.149171880531, 46.139799536991)
 (8.153872386826, 46.139799536991)
 (8.153872386826, 46.144500043286)
 (8.153872386826, 46.149200549581)
 (8.153872386826, 46.153901055876)
 (8.149171880531, 46.153901055876)
 (8.149171880531, 46.158601562172)
 (8.149171880531, 46.163302068467)
 (8.153872386826, 46.163302068467)
 (8.153872386826, 46.168002574762)
 (8.153872386826, 46.172703081057)
 (8.158572893121, 46.172703081057)
 (8.163273399416, 46.172703081057)
 (8.163273399416, 46.177403587352)
 (8.167973905711, 46.177403587352)
 (8.167973905711, 46.182104093648)
 (8.163273399416, 46.182104093648)
 (8.163273399416, 46.186804599943)
 (8.158572893121, 46.186804599943)
 (8.158572893121, 46.191505106238)
 (8.153872386826, 46.191505106238)
 (8.153872386826, 46.196205612533)
 (8.149171880531, 46.196205612533)
 (8.149171880531, 46.200906118829)
 (8.149171880531, 46.205606625124)
 (8.144471374235, 46.205606625124)
 (8.144471374235, 46.210307131419)
 (8.144471374235, 46.215007637714)
 (8.13977086794, 46.215007637714)
 (8.13977086794, 46.219708144009)
 (8.13977086794, 46.224408650305)
 (8.135070361645, 46.224408650305)
 (8.135070361645, 46.2291091566)
 (8.13036985535, 46.2291091566)
 (8.125669349055, 46.2291091566)
 (8.120968842759, 46.2291091566)
 (8.120968842759, 46.233809662895)
 (8.116268336464, 46.233809662895)
 (8.116268336464, 46.23851016919)
 (8.116268336464, 46.243210675486)
 (8.111567830169, 46.243210675486)
 (8.111567830169, 46.247911181781)
 (8.106867323874, 46.247911181781)
 (8.106867323874, 46.252611688076)
 (8.102166817578, 46.252611688076)
 (8.097466311283, 46.252611688076)
 (8.092765804988, 46.252611688076)
 (8.088065298693, 46.252611688076)
 (8.083364792398, 46.252611688076)
 (8.083364792398, 46.257312194371)
 (8.078664286102, 46.257312194371)
 (8.078664286102, 46.262012700666)
 (8.083364792398, 46.262012700666)
 (8.083364792398, 46.266713206962)
 (8.088065298693, 46.266713206962)
 (8.092765804988, 46.266713206962)
 (8.092765804988, 46.271413713257)
 (8.097466311283, 46.271413713257)
 (8.097466311283, 46.276114219552)
 (8.102166817578, 46.276114219552)
 (8.106867323874, 46.276114219552)
 (8.106867323874, 46.280814725847)
 (8.111567830169, 46.280814725847)
 (8.116268336464, 46.280814725847)
 (8.116268336464, 46.285515232142)
 (8.116268336464, 46.290215738438)
 (8.120968842759, 46.290215738438)
 (8.120968842759, 46.294916244733)
 (8.125669349055, 46.294916244733)
 (8.125669349055, 46.299616751028)
 (8.13036985535, 46.299616751028)
 (8.135070361645, 46.299616751028)
 (8.135070361645, 46.304317257323)
 (8.13977086794, 46.304317257323)
 (8.13977086794, 46.299616751028)
 (8.144471374235, 46.299616751028)
 (8.149171880531, 46.299616751028)
 (8.153872386826, 46.299616751028)
 (8.153872386826, 46.294916244733)
 (8.158572893121, 46.294916244733)
 (8.163273399416, 46.294916244733)
 (8.167973905711, 46.294916244733)
 (8.172674412007, 46.294916244733)
 (8.177374918302, 46.294916244733)
 (8.177374918302, 46.299616751028)
 (8.182075424597, 46.299616751028)
 (8.186775930892, 46.299616751028)
 (8.191476437188, 46.299616751028)
 (8.191476437188, 46.304317257323)
 (8.196176943483, 46.304317257323)
 (8.200877449778, 46.304317257323)
 (8.205577956073, 46.304317257323)
 (8.210278462368, 46.304317257323)
 (8.210278462368, 46.309017763619)
 (8.214978968664, 46.309017763619)
 (8.214978968664, 46.313718269914)
 (8.214978968664, 46.318418776209)
 (8.219679474959, 46.318418776209)
 (8.219679474959, 46.323119282504)
 (8.224379981254, 46.323119282504)
 (8.224379981254, 46.327819788799)
 (8.224379981254, 46.332520295095)
 (8.229080487549, 46.332520295095)
 (8.229080487549, 46.33722080139)
 (8.233780993844, 46.33722080139)
 (8.23848150014, 46.33722080139)
 (8.243182006435, 46.33722080139)
 (8.243182006435, 46.341921307685)
 (8.24788251273, 46.341921307685)
 (8.252583019025, 46.341921307685)
 (8.252583019025, 46.34662181398)
 (8.257283525321, 46.34662181398)
 (8.261984031616, 46.34662181398)
 (8.261984031616, 46.351322320275)
 (8.261984031616, 46.356022826571)
 (8.261984031616, 46.360723332866)
 (8.261984031616, 46.365423839161)
 (8.266684537911, 46.365423839161)
 (8.271385044206, 46.365423839161)
 (8.276085550501, 46.365423839161)
 (8.280786056797, 46.365423839161)
 (8.285486563092, 46.365423839161)
 (8.285486563092, 46.370124345456)
 (8.290187069387, 46.370124345456)
 (8.294887575682, 46.370124345456)
 (8.294887575682, 46.374824851752)
 (8.299588081978, 46.374824851752)
 (8.304288588273, 46.374824851752)
 (8.308989094568, 46.374824851752)
 (8.308989094568, 46.379525358047)
 (8.313689600863, 46.379525358047)
 (8.313689600863, 46.384225864342)
 (8.318390107158, 46.384225864342)
 (8.318390107158, 46.388926370637)
 (8.313689600863, 46.388926370637)
 (8.313689600863, 46.393626876932)
 (8.313689600863, 46.398327383228)
 (8.313689600863, 46.403027889523)
 (8.308989094568, 46.403027889523)
 (8.304288588273, 46.403027889523)
 (8.299588081978, 46.403027889523)
 (8.294887575682, 46.403027889523)
 (8.294887575682, 46.407728395818)
 (8.290187069387, 46.407728395818)
 (8.290187069387, 46.412428902113)
 (8.294887575682, 46.412428902113)
 (8.294887575682, 46.417129408408)
 (8.299588081978, 46.417129408408)
 (8.299588081978, 46.421829914704)
 (8.304288588273, 46.421829914704)
 (8.308989094568, 46.421829914704)
 (8.308989094568, 46.426530420999)
 (8.313689600863, 46.426530420999)
 (8.318390107158, 46.426530420999)
 (8.323090613454, 46.426530420999)
 (8.327791119749, 46.426530420999)
 (8.332491626044, 46.426530420999)
 (8.332491626044, 46.431230927294)
 (8.337192132339, 46.431230927294)
 (8.341892638634, 46.431230927294)
 (8.341892638634, 46.435931433589)
 (8.34659314493, 46.435931433589)
 (8.34659314493, 46.440631939885)
 (8.351293651225, 46.440631939885)
 (8.35599415752, 46.440631939885)
 (8.35599415752, 46.44533244618)
 (8.360694663815, 46.44533244618)
 (8.360694663815, 46.450032952475)
 (8.365395170111, 46.450032952475)
 (8.370095676406, 46.450032952475)
 (8.370095676406, 46.45473345877)
 (8.374796182701, 46.45473345877)
 (8.379496688996, 46.45473345877)
 (8.384197195291, 46.45473345877)
 (8.388897701587, 46.45473345877)
 (8.393598207882, 46.45473345877)
 (8.398298714177, 46.45473345877)
 (8.402999220472, 46.45473345877)
 (8.407699726767, 46.45473345877)
 (8.407699726767, 46.459433965065)
 (8.412400233063, 46.459433965065)
 (8.417100739358, 46.459433965065)
 (8.421801245653, 46.459433965065)
 (8.426501751948, 46.459433965065)
 (8.426501751948, 46.464134471361)
 (8.431202258244, 46.464134471361)
 (8.435902764539, 46.464134471361)
 (8.440603270834, 46.464134471361)
 (8.445303777129, 46.464134471361)
 (8.450004283424, 46.464134471361)
 (8.450004283424, 46.459433965065)
 (8.45470478972, 46.459433965065)
 (8.45470478972, 46.45473345877)
 (8.459405296015, 46.45473345877)
 (8.459405296015, 46.450032952475)
 (8.46410580231, 46.450032952475)
 (8.46410580231, 46.44533244618)
 (8.46410580231, 46.440631939885)
 (8.459405296015, 46.440631939885)
 (8.459405296015, 46.435931433589)
 (8.459405296015, 46.431230927294)
 (8.459405296015, 46.426530420999)
 (8.459405296015, 46.421829914704)
 (8.459405296015, 46.417129408408)
 (8.46410580231, 46.417129408408)
 (8.46410580231, 46.412428902113)
 (8.468806308605, 46.412428902113)
 (8.468806308605, 46.407728395818)
 (8.46410580231, 46.407728395818)
 (8.46410580231, 46.403027889523)
 (8.46410580231, 46.398327383228)
 (8.468806308605, 46.398327383228)
 (8.468806308605, 46.393626876932)
 (8.46410580231, 46.393626876932)
 (8.46410580231, 46.388926370637)
 (8.46410580231, 46.384225864342)
 (8.46410580231, 46.379525358047)
 (8.46410580231, 46.374824851752)
 (8.468806308605, 46.374824851752)
 (8.468806308605, 46.370124345456)
 (8.468806308605, 46.365423839161)
 (8.468806308605, 46.360723332866)
 (8.46410580231, 46.360723332866)
 (8.46410580231, 46.356022826571)
 (8.46410580231, 46.351322320275)
 (8.46410580231, 46.34662181398)
 (8.46410580231, 46.341921307685)
 (8.46410580231, 46.33722080139)
 (8.46410580231, 46.332520295095)
 (8.46410580231, 46.327819788799)
 (8.459405296015, 46.327819788799)
 (8.45470478972, 46.327819788799)
 (8.45470478972, 46.323119282504)
 (8.450004283424, 46.323119282504)
 (8.450004283424, 46.318418776209)
 (8.445303777129, 46.318418776209)
 (8.440603270834, 46.318418776209)
 (8.440603270834, 46.313718269914)
 (8.440603270834, 46.309017763619)
 (8.440603270834, 46.304317257323)
 (8.435902764539, 46.304317257323)
 (8.431202258244, 46.304317257323)
 (8.431202258244, 46.299616751028)
 (8.431202258244, 46.294916244733)
 (8.431202258244, 46.290215738438)
 (8.435902764539, 46.290215738438)
 (8.435902764539, 46.285515232142)
 (8.440603270834, 46.285515232142)
 (8.440603270834, 46.280814725847)
 (8.445303777129, 46.280814725847)
 (8.445303777129, 46.276114219552)
 (8.450004283424, 46.276114219552)
 (8.450004283424, 46.271413713257)
 (8.450004283424, 46.266713206962)
 (8.450004283424, 46.262012700666)
 (8.450004283424, 46.257312194371)
 (8.445303777129, 46.257312194371)
 (8.445303777129, 46.252611688076)
 (8.445303777129, 46.247911181781)
 (8.450004283424, 46.247911181781)
 (8.45470478972, 46.247911181781)
 (8.45470478972, 46.243210675486)
 (8.459405296015, 46.243210675486)
 (8.46410580231, 46.243210675486)
 (8.46410580231, 46.23851016919)
 (8.468806308605, 46.23851016919)
 (8.468806308605, 46.233809662895)
 (8.4735068149, 46.233809662895)
 (8.4735068149, 46.2291091566)
 (8.478207321196, 46.2291091566)
 (8.482907827491, 46.2291091566)
 (8.487608333786, 46.2291091566)
 (8.492308840081, 46.2291091566)
 (8.497009346377, 46.2291091566)
 (8.497009346377, 46.224408650305)
 (8.501709852672, 46.224408650305)
 (8.506410358967, 46.224408650305)
 (8.511110865262, 46.224408650305)
 (8.515811371557, 46.224408650305)
 (8.515811371557, 46.219708144009)
 (8.520511877853, 46.219708144009)
 (8.525212384148, 46.219708144009)
 (8.529912890443, 46.219708144009)
 (8.534613396738, 46.219708144009)
 (8.534613396738, 46.215007637714)
 (8.534613396738, 46.210307131419)
 (8.534613396738, 46.205606625124)
 (8.539313903033, 46.205606625124)
 (8.539313903033, 46.200906118829)
 (8.539313903033, 46.196205612533)
 (8.544014409329, 46.196205612533)
 (8.548714915624, 46.196205612533)
 (8.548714915624, 46.191505106238)
 (8.553415421919, 46.191505106238)
 (8.553415421919, 46.186804599943)
 (8.558115928214, 46.186804599943)
 (8.558115928214, 46.182104093648)
 (8.56281643451, 46.182104093648)
 (8.567516940805, 46.182104093648)
 (8.567516940805, 46.177403587352)
 (8.5722174471, 46.177403587352)
 (8.5722174471, 46.172703081057)
 (8.5722174471, 46.168002574762)
 (8.576917953395, 46.168002574762)
 (8.576917953395, 46.163302068467)
 (8.58161845969, 46.163302068467)
 (8.586318965986, 46.163302068467)
 (8.586318965986, 46.158601562172)
 (8.591019472281, 46.158601562172)
 (8.595719978576, 46.158601562172)
 (8.595719978576, 46.153901055876)
 (8.600420484871, 46.153901055876)
 (8.600420484871, 46.149200549581)
 (8.595719978576, 46.149200549581)
 (8.595719978576, 46.144500043286)
 (8.595719978576, 46.139799536991)
 (8.600420484871, 46.139799536991)
 (8.605120991167, 46.139799536991)
 (8.605120991167, 46.135099030696)
 (8.609821497462, 46.135099030696)
 (8.609821497462, 46.1303985244)
 (8.609821497462, 46.125698018105)
 (8.614522003757, 46.125698018105)
 (8.614522003757, 46.12099751181)
 (8.619222510052, 46.12099751181)
 (8.623923016347, 46.12099751181)
 (8.628623522643, 46.12099751181)
 (8.633324028938, 46.12099751181)
 (8.638024535233, 46.12099751181)
 (8.642725041528, 46.12099751181)
 (8.647425547823, 46.12099751181)
 (8.652126054119, 46.12099751181)
 (8.652126054119, 46.116297005515)
 (8.656826560414, 46.116297005515)
 (8.656826560414, 46.111596499219)
 (8.661527066709, 46.111596499219)
 (8.666227573004, 46.111596499219)
 (8.666227573004, 46.106895992924)
 (8.6709280793, 46.106895992924)
 (8.675628585595, 46.106895992924)
 (8.675628585595, 46.111596499219)
 (8.68032909189, 46.111596499219)
 (8.68032909189, 46.106895992924)
 (8.685029598185, 46.106895992924)
 (8.685029598185, 46.102195486629)
 (8.68973010448, 46.102195486629)
 (8.694430610776, 46.102195486629)
 (8.699131117071, 46.102195486629)
 (8.703831623366, 46.102195486629)
 (8.703831623366, 46.097494980334)
 (8.708532129661, 46.097494980334)
 (8.713232635956, 46.097494980334)
 (8.717933142252, 46.097494980334)
 (8.717933142252, 46.102195486629)
 (8.717933142252, 46.106895992924)
 (8.722633648547, 46.106895992924)
 (8.722633648547, 46.111596499219)
 (8.727334154842, 46.111596499219)
 (8.732034661137, 46.111596499219)
 (8.732034661137, 46.116297005515)
 (8.736735167433, 46.116297005515)
 (8.736735167433, 46.12099751181)
 (8.741435673728, 46.12099751181)
 (8.746136180023, 46.12099751181)
 (8.746136180023, 46.116297005515)
 (8.750836686318, 46.116297005515)
 (8.750836686318, 46.111596499219)
 (8.755537192613, 46.111596499219)
 (8.755537192613, 46.106895992924)
 (8.755537192613, 46.102195486629)
 (8.760237698909, 46.102195486629)
 (8.764938205204, 46.102195486629)
 (8.764938205204, 46.097494980334)
 (8.769638711499, 46.097494980334)
 (8.774339217794, 46.097494980334)
 (8.779039724089, 46.097494980334)
 (8.783740230385, 46.097494980334)
 (8.78844073668, 46.097494980334)
 (8.793141242975, 46.097494980334)
 (8.79784174927, 46.097494980334)
 (8.802542255566, 46.097494980334)
 (8.802542255566, 46.102195486629)
 (8.807242761861, 46.102195486629)
 (8.811943268156, 46.102195486629)
 (8.811943268156, 46.097494980334)
 (8.816643774451, 46.097494980334)
 (8.821344280746, 46.097494980334)
 (8.821344280746, 46.092794474039)
 (8.826044787042, 46.092794474039)
 (8.830745293337, 46.092794474039)
 (8.830745293337, 46.088093967743)
 (8.835445799632, 46.088093967743)
 (8.835445799632, 46.083393461448)
 (8.840146305927, 46.083393461448)
 (8.840146305927, 46.078692955153)
 (8.844846812222, 46.078692955153)
 (8.849547318518, 46.078692955153)
 (8.849547318518, 46.073992448858)
 (8.854247824813, 46.073992448858)
 (8.854247824813, 46.069291942563)
 (8.854247824813, 46.064591436267)
 (8.854247824813, 46.059890929972)
 (8.849547318518, 46.059890929972)
 (8.849547318518, 46.055190423677)
 (8.849547318518, 46.050489917382)
 (8.844846812222, 46.050489917382)
 (8.840146305927, 46.050489917382)
 (8.835445799632, 46.050489917382)
 (8.830745293337, 46.050489917382)
 (8.830745293337, 46.045789411086)
 (8.830745293337, 46.041088904791)
 (8.830745293337, 46.036388398496)
 (8.826044787042, 46.036388398496)
 (8.826044787042, 46.031687892201)
 (8.826044787042, 46.026987385906)
 (8.821344280746, 46.026987385906)
 (8.816643774451, 46.026987385906)
 (8.811943268156, 46.026987385906)
 (8.811943268156, 46.02228687961)
 (8.807242761861, 46.02228687961)
 (8.802542255566, 46.02228687961)
 (8.802542255566, 46.017586373315)
 (8.79784174927, 46.017586373315)
 (8.79784174927, 46.01288586702)
 (8.79784174927, 46.008185360725)
 (8.793141242975, 46.008185360725)
 (8.793141242975, 46.00348485443)
 (8.793141242975, 45.998784348134)
 (8.78844073668, 45.998784348134)
 (8.78844073668, 45.994083841839)
 (8.78844073668, 45.989383335544)
 (8.793141242975, 45.989383335544)
 (8.793141242975, 45.994083841839)
 (8.79784174927, 45.994083841839)
 (8.802542255566, 45.994083841839)
 (8.807242761861, 45.994083841839)
 (8.807242761861, 45.989383335544)
 (8.811943268156, 45.989383335544)
 (8.816643774451, 45.989383335544)
 (8.821344280746, 45.989383335544)
 (8.826044787042, 45.989383335544)
 (8.830745293337, 45.989383335544)
 (8.830745293337, 45.984682829249)
 (8.835445799632, 45.984682829249)
 (8.840146305927, 45.984682829249)
 (8.840146305927, 45.979982322953)
 (8.844846812222, 45.979982322953)
 (8.844846812222, 45.975281816658)
 (8.849547318518, 45.975281816658)
 (8.849547318518, 45.970581310363)
 (8.854247824813, 45.970581310363)
 (8.858948331108, 45.970581310363)
 (8.858948331108, 45.965880804068)
 (8.863648837403, 45.965880804068)
 (8.868349343699, 45.965880804068)
 (8.868349343699, 45.961180297773)
 (8.873049849994, 45.961180297773)
 (8.873049849994, 45.956479791477)
 (8.877750356289, 45.956479791477)
 (8.882450862584, 45.956479791477)
 (8.887151368879, 45.956479791477)
 (8.891851875175, 45.956479791477)
 (8.89655238147, 45.956479791477)
 (8.89655238147, 45.951779285182)
 (8.89655238147, 45.947078778887)
 (8.89655238147, 45.942378272592)
 (8.89655238147, 45.937677766297)
 (8.89655238147, 45.932977260001)
 (8.89655238147, 45.928276753706)
 (8.89655238147, 45.923576247411)
 (8.901252887765, 45.923576247411)
 (8.901252887765, 45.918875741116)
 (8.90595339406, 45.918875741116)
 (8.910653900356, 45.918875741116)
 (8.915354406651, 45.918875741116)
 (8.915354406651, 45.91417523482)
 (8.920054912946, 45.91417523482)
 (8.920054912946, 45.909474728525)
 (8.920054912946, 45.90477422223)
 (8.924755419241, 45.90477422223)
 (8.924755419241, 45.900073715935)
 (8.924755419241, 45.89537320964)
 (8.924755419241, 45.890672703344)
 (8.929455925536, 45.890672703344)
 (8.929455925536, 45.885972197049)
 (8.934156431832, 45.885972197049)
 (8.934156431832, 45.881271690754)
 (8.934156431832, 45.876571184459)
 (8.934156431832, 45.871870678164)
 (8.934156431832, 45.867170171868)
 (8.938856938127, 45.867170171868)
 (8.943557444422, 45.867170171868)
 (8.943557444422, 45.862469665573)
 (8.938856938127, 45.862469665573)
 (8.934156431832, 45.862469665573)
 (8.934156431832, 45.857769159278)
 (8.929455925536, 45.857769159278)
 (8.929455925536, 45.853068652983)
 (8.924755419241, 45.853068652983)
 (8.920054912946, 45.853068652983)
 (8.920054912946, 45.848368146687)
 (8.915354406651, 45.848368146687)
 (8.915354406651, 45.843667640392)
 (8.915354406651, 45.838967134097)
 (8.910653900356, 45.838967134097)
 (8.910653900356, 45.834266627802)
 (8.915354406651, 45.834266627802)
 (8.915354406651, 45.829566121507)
 (8.920054912946, 45.829566121507)
 (8.924755419241, 45.829566121507)
 (8.924755419241, 45.834266627802)
 (8.929455925536, 45.834266627802)
 (8.934156431832, 45.834266627802)
 (8.934156431832, 45.838967134097)
 (8.938856938127, 45.838967134097)
 (8.943557444422, 45.838967134097)
 (8.943557444422, 45.843667640392)
 (8.948257950717, 45.843667640392)
 (8.952958457012, 45.843667640392)
 (8.957658963308, 45.843667640392)
 (8.957658963308, 45.838967134097)
 (8.962359469603, 45.838967134097)
 (8.962359469603, 45.834266627802)
 (8.967059975898, 45.834266627802)
 (8.971760482193, 45.834266627802)
 (8.976460988489, 45.834266627802)
 (8.981161494784, 45.834266627802)
 (8.985862001079, 45.834266627802)
 (8.990562507374, 45.834266627802)
 (8.995263013669, 45.834266627802)
 (8.995263013669, 45.829566121507)
 (8.995263013669, 45.824865615211)
 (8.995263013669, 45.820165108916)
 (8.999963519965, 45.820165108916)
 (9.00466402626, 45.820165108916)
 (9.009364532555, 45.820165108916)
 (9.01406503885, 45.820165108916)
 (9.018765545145, 45.820165108916)
 (9.023466051441, 45.820165108916)
 (9.028166557736, 45.820165108916)
 (9.032867064031, 45.820165108916)
 (9.032867064031, 45.824865615211)
 (9.032867064031, 45.829566121507)
 (9.037567570326, 45.829566121507)
 (9.037567570326, 45.834266627802)
 (9.037567570326, 45.838967134097)
 (9.037567570326, 45.843667640392)
 (9.042268076622, 45.843667640392)
 (9.042268076622, 45.848368146687)
 (9.046968582917, 45.848368146687)
 (9.046968582917, 45.853068652983)
 (9.051669089212, 45.853068652983)
 (9.051669089212, 45.857769159278)
 (9.051669089212, 45.862469665573)
 (9.051669089212, 45.867170171868)
 (9.051669089212, 45.871870678164)
 (9.056369595507, 45.871870678164)
 (9.056369595507, 45.876571184459)
 (9.061070101802, 45.876571184459)
 (9.065770608098, 45.876571184459)
 (9.070471114393, 45.876571184459)
 (9.070471114393, 45.881271690754)
 (9.075171620688, 45.881271690754)
 (9.075171620688, 45.885972197049)
 (9.079872126983, 45.885972197049)
 (9.079872126983, 45.890672703344)
 (9.084572633278, 45.890672703344)
 (9.084572633278, 45.89537320964)
 (9.089273139574, 45.89537320964)
 (9.089273139574, 45.900073715935)
 (9.084572633278, 45.900073715935)
 (9.079872126983, 45.900073715935)
 (9.075171620688, 45.900073715935)
 (9.075171620688, 45.90477422223)
 (9.075171620688, 45.909474728525)
 (9.075171620688, 45.91417523482)
 (9.070471114393, 45.91417523482)
 (9.065770608098, 45.91417523482)
 (9.061070101802, 45.91417523482)
 (9.061070101802, 45.918875741116)
 (9.061070101802, 45.923576247411)
 (9.056369595507, 45.923576247411)
 (9.056369595507, 45.918875741116)
 (9.051669089212, 45.918875741116)
 (9.051669089212, 45.923576247411)
 (9.046968582917, 45.923576247411)
 (9.046968582917, 45.928276753706)
 (9.042268076622, 45.928276753706)
 (9.037567570326, 45.928276753706)
 (9.032867064031, 45.928276753706)
 (9.028166557736, 45.928276753706)
 (9.023466051441, 45.928276753706)
 (9.018765545145, 45.928276753706)
 (9.018765545145, 45.932977260001)
 (9.023466051441, 45.932977260001)
 (9.023466051441, 45.937677766297)
 (9.018765545145, 45.937677766297)
 (9.018765545145, 45.942378272592)
 (9.01406503885, 45.942378272592)
 (9.01406503885, 45.947078778887)
 (9.018765545145, 45.947078778887)
 (9.018765545145, 45.951779285182)
 (9.01406503885, 45.951779285182)
 (9.01406503885, 45.956479791477)
 (9.01406503885, 45.961180297773)
 (9.009364532555, 45.961180297773)
 (9.00466402626, 45.961180297773)
 (9.00466402626, 45.965880804068)
 (8.999963519965, 45.965880804068)
 (8.995263013669, 45.965880804068)
 (8.990562507374, 45.965880804068)
 (8.990562507374, 45.970581310363)
 (8.995263013669, 45.970581310363)
 (8.995263013669, 45.975281816658)
 (8.995263013669, 45.979982322953)
 (8.999963519965, 45.979982322953)
 (9.00466402626, 45.979982322953)
 (9.009364532555, 45.979982322953)
 (9.009364532555, 45.984682829249)
 (9.009364532555, 45.989383335544)
 (9.01406503885, 45.989383335544)
 (9.018765545145, 45.989383335544)
 (9.023466051441, 45.989383335544)
 (9.023466051441, 45.994083841839)
 (9.028166557736, 45.994083841839)
 (9.028166557736, 45.998784348134)
 (9.023466051441, 45.998784348134)
 (9.023466051441, 46.00348485443)
 (9.023466051441, 46.008185360725)
 (9.023466051441, 46.01288586702)
 (9.023466051441, 46.017586373315)
 (9.018765545145, 46.017586373315)
 (9.018765545145, 46.02228687961)
 (9.01406503885, 46.02228687961)
 (9.01406503885, 46.026987385906)
 (9.009364532555, 46.026987385906)
 (9.009364532555, 46.031687892201)
 (9.009364532555, 46.036388398496)
 (9.009364532555, 46.041088904791)
 (9.01406503885, 46.041088904791)
 (9.018765545145, 46.041088904791)
 (9.018765545145, 46.045789411086)
 (9.018765545145, 46.050489917382)
 (9.023466051441, 46.050489917382)
 (9.023466051441, 46.055190423677)
 (9.028166557736, 46.055190423677)
 (9.032867064031, 46.055190423677)
 (9.037567570326, 46.055190423677)
 (9.037567570326, 46.059890929972)
 (9.042268076622, 46.059890929972)
 (9.046968582917, 46.059890929972)
 (9.051669089212, 46.059890929972)
 (9.056369595507, 46.059890929972)
 (9.061070101802, 46.059890929972)
 (9.065770608098, 46.059890929972)
 (9.070471114393, 46.059890929972)
 (9.070471114393, 46.064591436267)
 (9.075171620688, 46.064591436267)
 (9.079872126983, 46.064591436267)
 (9.079872126983, 46.069291942563)
 (9.079872126983, 46.073992448858)
 (9.079872126983, 46.078692955153)
 (9.084572633278, 46.078692955153)
 (9.084572633278, 46.083393461448)
 (9.089273139574, 46.083393461448)
 (9.089273139574, 46.088093967743)
 (9.084572633278, 46.088093967743)
 (9.084572633278, 46.092794474039)
 (9.084572633278, 46.097494980334)
 (9.079872126983, 46.097494980334)
 (9.079872126983, 46.102195486629)
 (9.079872126983, 46.106895992924)
 (9.075171620688, 46.106895992924)
 (9.075171620688, 46.111596499219)
 (9.075171620688, 46.116297005515)
 (9.075171620688, 46.12099751181)
 (9.079872126983, 46.12099751181)
 (9.084572633278, 46.12099751181)
 (9.084572633278, 46.125698018105)
 (9.089273139574, 46.125698018105)
 (9.093973645869, 46.125698018105)
 (9.098674152164, 46.125698018105)
 (9.098674152164, 46.1303985244)
 (9.103374658459, 46.1303985244)
 (9.108075164755, 46.1303985244)
 (9.108075164755, 46.135099030696)
 (9.11277567105, 46.135099030696)
 (9.117476177345, 46.135099030696)
 (9.12217668364, 46.135099030696)
 (9.12217668364, 46.139799536991)
 (9.126877189935, 46.139799536991)
 (9.126877189935, 46.144500043286)
 (9.131577696231, 46.144500043286)
 (9.131577696231, 46.149200549581)
 (9.136278202526, 46.149200549581)
 (9.136278202526, 46.153901055876)
 (9.140978708821, 46.153901055876)
 (9.145679215116, 46.153901055876)
 (9.145679215116, 46.158601562172)
 (9.150379721411, 46.158601562172)
 (9.155080227707, 46.158601562172)
 (9.155080227707, 46.163302068467)
 (9.159780734002, 46.163302068467)
 (9.159780734002, 46.168002574762)
 (9.164481240297, 46.168002574762)
 (9.164481240297, 46.172703081057)
 (9.169181746592, 46.172703081057)
 (9.173882252888, 46.172703081057)
 (9.178582759183, 46.172703081057)
 (9.183283265478, 46.172703081057)
 (9.187983771773, 46.172703081057)
 (9.187983771773, 46.177403587352)
 (9.192684278068, 46.177403587352)
 (9.192684278068, 46.182104093648)
 (9.197384784364, 46.182104093648)
 (9.197384784364, 46.186804599943)
 (9.197384784364, 46.191505106238)
 (9.192684278068, 46.191505106238)
 (9.192684278068, 46.196205612533)
 (9.197384784364, 46.196205612533)
 (9.197384784364, 46.200906118829)
 (9.202085290659, 46.200906118829)
 (9.202085290659, 46.205606625124)
 (9.202085290659, 46.210307131419)
 (9.206785796954, 46.210307131419)
 (9.211486303249, 46.210307131419)
 (9.216186809544, 46.210307131419)
 (9.216186809544, 46.215007637714)
 (9.22088731584, 46.215007637714)
 (9.22088731584, 46.219708144009)
 (9.22088731584, 46.224408650305)
 (9.22088731584, 46.2291091566)
 (9.225587822135, 46.2291091566)
 (9.225587822135, 46.233809662895)
 (9.23028832843, 46.233809662895)
 (9.234988834725, 46.233809662895)
 (9.239689341021, 46.233809662895)
 (9.244389847316, 46.233809662895)
 (9.249090353611, 46.233809662895)
 (9.249090353611, 46.23851016919)
 (9.249090353611, 46.243210675486)
 (9.249090353611, 46.247911181781)
 (9.249090353611, 46.252611688076)
 (9.249090353611, 46.257312194371)
 (9.249090353611, 46.262012700666)
 (9.253790859906, 46.262012700666)
 (9.253790859906, 46.266713206962)
 (9.253790859906, 46.271413713257)
 (9.258491366201, 46.271413713257)
 (9.258491366201, 46.276114219552)
 (9.258491366201, 46.280814725847)
 (9.263191872497, 46.280814725847)
 (9.267892378792, 46.280814725847)
 (9.267892378792, 46.285515232142)
 (9.272592885087, 46.285515232142)
 (9.272592885087, 46.290215738438)
 (9.277293391382, 46.290215738438)
 (9.277293391382, 46.294916244733)
 (9.281993897678, 46.294916244733)
 (9.281993897678, 46.299616751028)
 (9.281993897678, 46.304317257323)
 (9.281993897678, 46.309017763619)
 (9.286694403973, 46.309017763619)
 (9.286694403973, 46.313718269914)
 (9.291394910268, 46.313718269914)
 (9.291394910268, 46.318418776209)
 (9.296095416563, 46.318418776209)
 (9.296095416563, 46.323119282504)
 (9.296095416563, 46.327819788799)
 (9.296095416563, 46.332520295095)
 (9.291394910268, 46.332520295095)
 (9.291394910268, 46.33722080139)
 (9.296095416563, 46.33722080139)
 (9.296095416563, 46.341921307685)
 (9.300795922858, 46.341921307685)
 (9.300795922858, 46.34662181398)
 (9.300795922858, 46.351322320275)
 (9.296095416563, 46.351322320275)
 (9.296095416563, 46.356022826571)
 (9.291394910268, 46.356022826571)
 (9.286694403973, 46.356022826571)
 (9.281993897678, 46.356022826571)
 (9.281993897678, 46.360723332866)
 (9.277293391382, 46.360723332866)
 (9.277293391382, 46.365423839161)
 (9.277293391382, 46.370124345456)
 (9.277293391382, 46.374824851752)
 (9.277293391382, 46.379525358047)
 (9.281993897678, 46.379525358047)
 (9.281993897678, 46.384225864342)
 (9.281993897678, 46.388926370637)
 (9.277293391382, 46.388926370637)
 (9.277293391382, 46.393626876932)
 (9.277293391382, 46.398327383228)
 (9.281993897678, 46.398327383228)
 (9.281993897678, 46.403027889523)
 (9.281993897678, 46.407728395818)
 (9.281993897678, 46.412428902113)
 (9.277293391382, 46.412428902113)
 (9.277293391382, 46.417129408408)
 (9.272592885087, 46.417129408408)
 (9.272592885087, 46.421829914704)
 (9.267892378792, 46.421829914704)
 (9.263191872497, 46.421829914704)
 (9.258491366201, 46.421829914704)
 (9.258491366201, 46.426530420999)
 (9.253790859906, 46.426530420999)
 (9.253790859906, 46.431230927294)
 (9.249090353611, 46.431230927294)
 (9.249090353611, 46.435931433589)
 (9.249090353611, 46.440631939885)
 (9.249090353611, 46.44533244618)
 (9.249090353611, 46.450032952475)
 (9.253790859906, 46.450032952475)
 (9.258491366201, 46.450032952475)
 (9.263191872497, 46.450032952475)
 (9.263191872497, 46.45473345877)
 (9.267892378792, 46.45473345877)
 (9.272592885087, 46.45473345877)
 (9.272592885087, 46.459433965065)
 (9.277293391382, 46.459433965065)
 (9.277293391382, 46.464134471361)
 (9.272592885087, 46.464134471361)
 (9.272592885087, 46.468834977656)
 (9.277293391382, 46.468834977656)
 (9.277293391382, 46.473535483951)
 (9.277293391382, 46.478235990246)
 (9.277293391382, 46.482936496541)
 (9.277293391382, 46.482936496542)
 (9.277293391382, 46.487637002837)
 (9.281993897678, 46.487637002837)
 (9.281993897678, 46.492337509132)
 (9.286694403973, 46.492337509132)
 (9.286694403973, 46.497038015427)
 (9.291394910268, 46.497038015427)
 (9.296095416563, 46.497038015427)
 (9.300795922858, 46.497038015427)
 (9.300795922858, 46.501738521722)
 (9.305496429154, 46.501738521722)
 (9.310196935449, 46.501738521722)
 (9.314897441744, 46.501738521722)
 (9.314897441744, 46.506439028018)
 (9.319597948039, 46.506439028018)
 (9.324298454334, 46.506439028018)
 (9.32899896063, 46.506439028018)
 (9.333699466925, 46.506439028018)
 (9.33839997322, 46.506439028018)
 (9.343100479515, 46.506439028018)
 (9.347800985811, 46.506439028018)
 (9.352501492106, 46.506439028018)
 (9.357201998401, 46.506439028018)
 (9.361902504696, 46.506439028018)
 (9.366603010991, 46.506439028018)
 (9.371303517287, 46.506439028018)
 (9.371303517287, 46.501738521722)
 (9.371303517287, 46.497038015427)
 (9.371303517287, 46.492337509132)
 (9.371303517287, 46.487637002837)
 (9.376004023582, 46.487637002837)
 (9.380704529877, 46.487637002837)
 (9.380704529877, 46.482936496541)
 (9.385405036172, 46.482936496541)
 (9.385405036172, 46.478235990246)
 (9.390105542467, 46.478235990246)
 (9.390105542467, 46.473535483951)
 (9.394806048763, 46.473535483951)
 (9.394806048763, 46.468834977656)
 (9.399506555058, 46.468834977656)
 (9.404207061353, 46.468834977656)
 (9.408907567648, 46.468834977656)
 (9.413608073944, 46.468834977656)
 (9.418308580239, 46.468834977656)
 (9.418308580239, 46.473535483951)
 (9.423009086534, 46.473535483951)
 (9.423009086534, 46.478235990246)
 (9.423009086534, 46.482936496541)
 (9.423009086534, 46.482936496542)
 (9.423009086534, 46.487637002837)
 (9.427709592829, 46.487637002837)
 (9.427709592829, 46.492337509132)
 (9.432410099124, 46.492337509132)
 (9.432410099124, 46.497038015427)
 (9.43711060542, 46.497038015427)
 (9.43711060542, 46.501738521722)
 (9.441811111715, 46.501738521722)
 (9.44651161801, 46.501738521722)
 (9.451212124305, 46.501738521722)
 (9.451212124305, 46.506439028018)
 (9.4559126306, 46.506439028018)
 (9.460613136896, 46.506439028018)
 (9.460613136896, 46.501738521722)
 (9.460613136896, 46.497038015427)
 (9.460613136896, 46.492337509132)
 (9.460613136896, 46.487637002837)
 (9.460613136896, 46.482936496542)
 (9.4559126306, 46.482936496542)
 (9.451212124305, 46.482936496542)
 (9.451212124305, 46.478235990246)
 (9.4559126306, 46.478235990246)
 (9.460613136896, 46.478235990246)
 (9.465313643191, 46.478235990246)
 (9.465313643191, 46.473535483951)
 (9.465313643191, 46.468834977656)
 (9.465313643191, 46.464134471361)
 (9.460613136896, 46.464134471361)
 (9.460613136896, 46.459433965065)
 (9.460613136896, 46.45473345877)
 (9.460613136896, 46.450032952475)
 (9.460613136896, 46.44533244618)
 (9.460613136896, 46.440631939885)
 (9.4559126306, 46.440631939885)
 (9.4559126306, 46.435931433589)
 (9.4559126306, 46.431230927294)
 (9.4559126306, 46.426530420999)
 (9.4559126306, 46.421829914704)
 (9.4559126306, 46.417129408408)
 (9.4559126306, 46.412428902113)
 (9.460613136896, 46.412428902113)
 (9.460613136896, 46.407728395818)
 (9.465313643191, 46.407728395818)
 (9.465313643191, 46.403027889523)
 (9.465313643191, 46.398327383228)
 (9.465313643191, 46.393626876932)
 (9.465313643191, 46.388926370637)
 (9.465313643191, 46.384225864342)
 (9.465313643191, 46.379525358047)
 (9.465313643191, 46.374824851752)
 (9.465313643191, 46.370124345456)
 (9.470014149486, 46.370124345456)
 (9.474714655781, 46.370124345456)
 (9.479415162077, 46.370124345456)
 (9.479415162077, 46.365423839161)
 (9.484115668372, 46.365423839161)
 (9.488816174667, 46.365423839161)
 (9.493516680962, 46.365423839161)
 (9.493516680962, 46.360723332866)
 (9.498217187257, 46.360723332866)
 (9.498217187257, 46.356022826571)
 (9.502917693553, 46.356022826571)
 (9.502917693553, 46.351322320275)
 (9.507618199848, 46.351322320275)
 (9.507618199848, 46.34662181398)
 (9.507618199848, 46.341921307685)
 (9.512318706143, 46.341921307685)
 (9.512318706143, 46.33722080139)
 (9.512318706143, 46.332520295095)
 (9.517019212438, 46.332520295095)
 (9.517019212438, 46.327819788799)
 (9.521719718733, 46.327819788799)
 (9.521719718733, 46.323119282504)
 (9.526420225029, 46.323119282504)
 (9.526420225029, 46.318418776209)
 (9.531120731324, 46.318418776209)
 (9.531120731324, 46.313718269914)
 (9.535821237619, 46.313718269914)
 (9.535821237619, 46.309017763619)
 (9.540521743914, 46.309017763619)
 (9.540521743914, 46.304317257323)
 (9.54522225021, 46.304317257323)
 (9.549922756505, 46.304317257323)
 (9.5546232628, 46.304317257323)
 (9.559323769095, 46.304317257323)
 (9.56402427539, 46.304317257323)
 (9.56402427539, 46.299616751028)
 (9.568724781686, 46.299616751028)
 (9.573425287981, 46.299616751028)
 (9.573425287981, 46.294916244733)
 (9.578125794276, 46.294916244733)
 (9.582826300571, 46.294916244733)
 (9.587526806867, 46.294916244733)
 (9.592227313162, 46.294916244733)
 (9.596927819457, 46.294916244733)
 (9.601628325752, 46.294916244733)
 (9.606328832047, 46.294916244733)
 (9.611029338343, 46.294916244733)
 (9.615729844638, 46.294916244733)
 (9.615729844638, 46.290215738438)
 (9.620430350933, 46.290215738438)
 (9.620430350933, 46.285515232142)
 (9.625130857228, 46.285515232142)
 (9.629831363523, 46.285515232142)
 (9.634531869819, 46.285515232142)
 (9.639232376114, 46.285515232142)
 (9.643932882409, 46.285515232142)
 (9.643932882409, 46.290215738438)
 (9.648633388704, 46.290215738438)
 (9.653333895, 46.290215738438)
 (9.653333895, 46.294916244733)
 (9.658034401295, 46.294916244733)
 (9.66273490759, 46.294916244733)
 (9.667435413885, 46.294916244733)
 (9.667435413885, 46.299616751028)
 (9.67213592018, 46.299616751028)
 (9.676836426476, 46.299616751028)
 (9.681536932771, 46.299616751028)
 (9.686237439066, 46.299616751028)
 (9.686237439066, 46.294916244733)
 (9.690937945361, 46.294916244733)
 (9.695638451656, 46.294916244733)
 (9.695638451656, 46.290215738438)
 (9.700338957952, 46.290215738438)
 (9.705039464247, 46.290215738438)
 (9.709739970542, 46.290215738438)
 (9.709739970542, 46.294916244733)
 (9.714440476837, 46.294916244733)
 (9.714440476837, 46.299616751028)
 (9.719140983133, 46.299616751028)
 (9.719140983133, 46.304317257323)
 (9.719140983133, 46.309017763619)
 (9.723841489428, 46.309017763619)
 (9.723841489428, 46.313718269914)
 (9.728541995723, 46.313718269914)
 (9.728541995723, 46.318418776209)
 (9.723841489428, 46.318418776209)
 (9.723841489428, 46.323119282504)
 (9.719140983133, 46.323119282504)
 (9.719140983133, 46.327819788799)
 (9.723841489428, 46.327819788799)
 (9.723841489428, 46.332520295095)
 (9.728541995723, 46.332520295095)
 (9.728541995723, 46.33722080139)
 (9.723841489428, 46.33722080139)
 (9.723841489428, 46.341921307685)
 (9.728541995723, 46.341921307685)
 (9.728541995723, 46.34662181398)
 (9.733242502018, 46.34662181398)
 (9.733242502018, 46.351322320275)
 (9.737943008313, 46.351322320275)
 (9.742643514609, 46.351322320275)
 (9.747344020904, 46.351322320275)
 (9.747344020904, 46.34662181398)
 (9.752044527199, 46.34662181398)
 (9.756745033494, 46.34662181398)
 (9.756745033494, 46.341921307685)
 (9.761445539789, 46.341921307685)
 (9.761445539789, 46.33722080139)
 (9.766146046085, 46.33722080139)
 (9.77084655238, 46.33722080139)
 (9.77084655238, 46.332520295095)
 (9.775547058675, 46.332520295095)
 (9.78024756497, 46.332520295095)
 (9.78024756497, 46.33722080139)
 (9.784948071266, 46.33722080139)
 (9.789648577561, 46.33722080139)
 (9.789648577561, 46.341921307685)
 (9.794349083856, 46.341921307685)
 (9.799049590151, 46.341921307685)
 (9.803750096446, 46.341921307685)
 (9.803750096446, 46.34662181398)
 (9.808450602742, 46.34662181398)
 (9.813151109037, 46.34662181398)
 (9.817851615332, 46.34662181398)
 (9.817851615332, 46.351322320275)
 (9.822552121627, 46.351322320275)
 (9.822552121627, 46.356022826571)
 (9.827252627922, 46.356022826571)
 (9.831953134218, 46.356022826571)
 (9.831953134218, 46.360723332866)
 (9.836653640513, 46.360723332866)
 (9.841354146808, 46.360723332866)
 (9.846054653103, 46.360723332866)
 (9.850755159399, 46.360723332866)
 (9.850755159399, 46.365423839161)
 (9.855455665694, 46.365423839161)
 (9.860156171989, 46.365423839161)
 (9.864856678284, 46.365423839161)
 (9.869557184579, 46.365423839161)
 (9.874257690875, 46.365423839161)
 (9.87895819717, 46.365423839161)
 (9.87895819717, 46.370124345456)
 (9.883658703465, 46.370124345456)
 (9.883658703465, 46.374824851752)
 (9.88835920976, 46.374824851752)
 (9.893059716056, 46.374824851752)
 (9.897760222351, 46.374824851752)
 (9.897760222351, 46.379525358047)
 (9.902460728646, 46.379525358047)
 (9.907161234941, 46.379525358047)
 (9.911861741236, 46.379525358047)
 (9.911861741236, 46.374824851752)
 (9.916562247532, 46.374824851752)
 (9.916562247532, 46.370124345456)
 (9.921262753827, 46.370124345456)
 (9.925963260122, 46.370124345456)
 (9.925963260122, 46.365423839161)
 (9.930663766417, 46.365423839161)
 (9.930663766417, 46.370124345456)
 (9.935364272712, 46.370124345456)
 (9.935364272712, 46.374824851752)
 (9.940064779008, 46.374824851752)
 (9.940064779008, 46.379525358047)
 (9.944765285303, 46.379525358047)
 (9.949465791598, 46.379525358047)
 (9.954166297893, 46.379525358047)
 (9.958866804189, 46.379525358047)
 (9.958866804189, 46.374824851752)
 (9.958866804189, 46.370124345456)
 (9.963567310484, 46.370124345456)
 (9.963567310484, 46.365423839161)
 (9.968267816779, 46.365423839161)
 (9.968267816779, 46.360723332866)
 (9.972968323074, 46.360723332866)
 (9.977668829369, 46.360723332866)
 (9.977668829369, 46.356022826571)
 (9.982369335665, 46.356022826571)
 (9.98706984196, 46.356022826571)
 (9.98706984196, 46.351322320275)
 (9.991770348255, 46.351322320275)
 (9.99647085455, 46.351322320275)
 (9.99647085455, 46.34662181398)
 (9.99647085455, 46.341921307685)
 (9.991770348255, 46.341921307685)
 (9.991770348255, 46.33722080139)
 (9.98706984196, 46.33722080139)
 (9.98706984196, 46.332520295095)
 (9.98706984196, 46.327819788799)
 (9.982369335665, 46.327819788799)
 (9.982369335665, 46.323119282504)
 (9.98706984196, 46.323119282504)
 (9.98706984196, 46.318418776209)
 (9.991770348255, 46.318418776209)
 (9.991770348255, 46.313718269914)
 (9.99647085455, 46.313718269914)
 (10.001171360845, 46.313718269914)
 (10.001171360845, 46.309017763619)
 (10.001171360845, 46.304317257323)
 (9.99647085455, 46.304317257323)
 (9.99647085455, 46.299616751028)
 (9.99647085455, 46.294916244733)
 (9.991770348255, 46.294916244733)
 (9.991770348255, 46.290215738438)
 (9.99647085455, 46.290215738438)
 (9.99647085455, 46.285515232142)
 (10.001171360845, 46.285515232142)
 (10.001171360845, 46.280814725847)
 (10.005871867141, 46.280814725847)
 (10.010572373436, 46.280814725847)
 (10.015272879731, 46.280814725847)
 (10.019973386026, 46.280814725847)
 (10.019973386026, 46.276114219552)
 (10.024673892322, 46.276114219552)
 (10.029374398617, 46.276114219552)
 (10.034074904912, 46.276114219552)
 (10.038775411207, 46.276114219552)
 (10.038775411207, 46.271413713257)
 (10.043475917502, 46.271413713257)
 (10.048176423798, 46.271413713257)
 (10.048176423798, 46.266713206962)
 (10.052876930093, 46.266713206962)
 (10.052876930093, 46.262012700666)
 (10.057577436388, 46.262012700666)
 (10.057577436388, 46.257312194371)
 (10.057577436388, 46.252611688076)
 (10.057577436388, 46.247911181781)
 (10.057577436388, 46.243210675486)
 (10.057577436388, 46.23851016919)
 (10.052876930093, 46.23851016919)
 (10.052876930093, 46.233809662895)
 (10.048176423798, 46.233809662895)
 (10.043475917502, 46.233809662895)
 (10.043475917502, 46.2291091566)
 (10.048176423798, 46.2291091566)
 (10.048176423798, 46.224408650305)
 (10.052876930093, 46.224408650305)
 (10.057577436388, 46.224408650305)
 (10.057577436388, 46.219708144009)
 (10.062277942683, 46.219708144009)
 (10.066978448978, 46.219708144009)
 (10.071678955274, 46.219708144009)
 (10.076379461569, 46.219708144009)
 (10.076379461569, 46.224408650305)
 (10.081079967864, 46.224408650305)
 (10.085780474159, 46.224408650305)
 (10.090480980455, 46.224408650305)
 (10.09518148675, 46.224408650305)
 (10.09518148675, 46.2291091566)
 (10.099881993045, 46.2291091566)
 (10.10458249934, 46.2291091566)
 (10.10458249934, 46.224408650305)
 (10.109283005635, 46.224408650305)
 (10.113983511931, 46.224408650305)
 (10.118684018226, 46.224408650305)
 (10.123384524521, 46.224408650305)
 (10.128085030816, 46.224408650305)
 (10.132785537111, 46.224408650305)
 (10.137486043407, 46.224408650305)
 (10.137486043407, 46.2291091566)
 (10.142186549702, 46.2291091566)
 (10.146887055997, 46.2291091566)
 (10.146887055997, 46.233809662895)
 (10.146887055997, 46.23851016919)
 (10.151587562292, 46.23851016919)
 (10.156288068588, 46.23851016919)
 (10.156288068588, 46.243210675486)
 (10.160988574883, 46.243210675486)
 (10.160988574883, 46.247911181781)
 (10.165689081178, 46.247911181781)
 (10.170389587473, 46.247911181781)
 (10.170389587473, 46.252611688076)
 (10.175090093768, 46.252611688076)
 (10.175090093768, 46.257312194371)
 (10.175090093768, 46.262012700666)
 (10.175090093768, 46.266713206962)
 (10.170389587473, 46.266713206962)
 (10.170389587473, 46.271413713257)
 (10.165689081178, 46.271413713257)
 (10.160988574883, 46.271413713257)
 (10.160988574883, 46.276114219552)
 (10.160988574883, 46.280814725847)
 (10.160988574883, 46.285515232142)
 (10.156288068588, 46.285515232142)
 (10.156288068588, 46.290215738438)
 (10.156288068588, 46.294916244733)
 (10.151587562292, 46.294916244733)
 (10.146887055997, 46.294916244733)
 (10.142186549702, 46.294916244733)
 (10.142186549702, 46.299616751028)
 (10.137486043407, 46.299616751028)
 (10.137486043407, 46.304317257323)
 (10.137486043407, 46.309017763619)
 (10.132785537111, 46.309017763619)
 (10.128085030816, 46.309017763619)
 (10.128085030816, 46.313718269914)
 (10.123384524521, 46.313718269914)
 (10.118684018226, 46.313718269914)
 (10.118684018226, 46.318418776209)
 (10.113983511931, 46.318418776209)
 (10.113983511931, 46.323119282504)
 (10.113983511931, 46.327819788799)
 (10.109283005635, 46.327819788799)
 (10.109283005635, 46.332520295095)
 (10.10458249934, 46.332520295095)
 (10.10458249934, 46.33722080139)
 (10.10458249934, 46.341921307685)
 (10.10458249934, 46.34662181398)
 (10.109283005635, 46.34662181398)
 (10.109283005635, 46.351322320275)
 (10.113983511931, 46.351322320275)
 (10.113983511931, 46.356022826571)
 (10.118684018226, 46.356022826571)
 (10.118684018226, 46.360723332866)
 (10.123384524521, 46.360723332866)
 (10.128085030816, 46.360723332866)
 (10.132785537111, 46.360723332866)
 (10.132785537111, 46.365423839161)
 (10.128085030816, 46.365423839161)
 (10.128085030816, 46.370124345456)
 (10.128085030816, 46.374824851752)
 (10.128085030816, 46.379525358047)
 (10.132785537111, 46.379525358047)
 (10.132785537111, 46.384225864342)
 (10.137486043407, 46.384225864342)
 (10.142186549702, 46.384225864342)
 (10.146887055997, 46.384225864342)
 (10.151587562292, 46.384225864342)
 (10.156288068588, 46.384225864342)
 (10.160988574883, 46.384225864342)
 (10.160988574883, 46.388926370637)
 (10.160988574883, 46.393626876932)
 (10.165689081178, 46.393626876932)
 (10.165689081178, 46.398327383228)
 (10.165689081178, 46.403027889523)
 (10.165689081178, 46.407728395818)
 (10.165689081178, 46.412428902113)
 (10.160988574883, 46.412428902113)
 (10.156288068588, 46.412428902113)
 (10.151587562292, 46.412428902113)
 (10.146887055997, 46.412428902113)
 (10.146887055997, 46.417129408408)
 (10.146887055997, 46.421829914704)
 (10.142186549702, 46.421829914704)
 (10.142186549702, 46.426530420999)
 (10.137486043407, 46.426530420999)
 (10.132785537111, 46.426530420999)
 (10.132785537111, 46.431230927294)
 (10.128085030816, 46.431230927294)
 (10.123384524521, 46.431230927294)
 (10.123384524521, 46.426530420999)
 (10.118684018226, 46.426530420999)
 (10.113983511931, 46.426530420999)
 (10.109283005635, 46.426530420999)
 (10.10458249934, 46.426530420999)
 (10.10458249934, 46.421829914704)
 (10.099881993045, 46.421829914704)
 (10.09518148675, 46.421829914704)
 (10.090480980455, 46.421829914704)
 (10.085780474159, 46.421829914704)
 (10.081079967864, 46.421829914704)
 (10.076379461569, 46.421829914704)
 (10.076379461569, 46.426530420999)
 (10.071678955274, 46.426530420999)
 (10.066978448978, 46.426530420999)
 (10.062277942683, 46.426530420999)
 (10.057577436388, 46.426530420999)
 (10.057577436388, 46.431230927294)
 (10.057577436388, 46.435931433589)
 (10.052876930093, 46.435931433589)
 (10.052876930093, 46.440631939885)
 (10.048176423798, 46.440631939885)
 (10.043475917502, 46.440631939885)
 (10.043475917502, 46.44533244618)
 (10.038775411207, 46.44533244618)
 (10.038775411207, 46.450032952475)
 (10.043475917502, 46.450032952475)
 (10.043475917502, 46.45473345877)
 (10.048176423798, 46.45473345877)
 (10.048176423798, 46.459433965065)
 (10.052876930093, 46.459433965065)
 (10.052876930093, 46.464134471361)
 (10.052876930093, 46.468834977656)
 (10.052876930093, 46.473535483951)
 (10.048176423798, 46.473535483951)
 (10.048176423798, 46.478235990246)
 (10.043475917502, 46.478235990246)
 (10.043475917502, 46.482936496541)
 (10.043475917502, 46.482936496542)
 (10.043475917502, 46.487637002837)
 (10.048176423798, 46.487637002837)
 (10.048176423798, 46.492337509132)
 (10.048176423798, 46.497038015427)
 (10.048176423798, 46.501738521722)
 (10.048176423798, 46.506439028018)
 (10.043475917502, 46.506439028018)
 (10.043475917502, 46.511139534313)
 (10.048176423798, 46.511139534313)
 (10.048176423798, 46.515840040608)
 (10.052876930093, 46.515840040608)
 (10.052876930093, 46.520540546903)
 (10.052876930093, 46.525241053198)
 (10.052876930093, 46.529941559494)
 (10.048176423798, 46.529941559494)
 (10.048176423798, 46.534642065789)
 (10.048176423798, 46.539342572084)
 (10.048176423798, 46.544043078379)
 (10.052876930093, 46.544043078379)
 (10.057577436388, 46.544043078379)
 (10.062277942683, 46.544043078379)
 (10.062277942683, 46.548743584675)
 (10.066978448978, 46.548743584675)
 (10.066978448978, 46.55344409097)
 (10.071678955274, 46.55344409097)
 (10.071678955274, 46.558144597265)
 (10.076379461569, 46.558144597265)
 (10.076379461569, 46.56284510356)
 (10.081079967864, 46.56284510356)
 (10.085780474159, 46.56284510356)
 (10.085780474159, 46.567545609855)
 (10.081079967864, 46.567545609855)
 (10.081079967864, 46.572246116151)
 (10.081079967864, 46.576946622446)
 (10.085780474159, 46.576946622446)
 (10.090480980455, 46.576946622446)
 (10.09518148675, 46.576946622446)
 (10.09518148675, 46.581647128741)
 (10.099881993045, 46.581647128741)
 (10.099881993045, 46.586347635036)
 (10.099881993045, 46.591048141331)
 (10.099881993045, 46.595748647627)
 (10.099881993045, 46.600449153922)
 (10.099881993045, 46.605149660217)
 (10.099881993045, 46.609850166512)
 (10.10458249934, 46.609850166512)
 (10.109283005635, 46.609850166512)
 (10.113983511931, 46.609850166512)
 (10.118684018226, 46.609850166512)
 (10.123384524521, 46.609850166512)
 (10.128085030816, 46.609850166512)
 (10.132785537111, 46.609850166512)
 (10.137486043407, 46.609850166512)
 (10.142186549702, 46.609850166512)
 (10.146887055997, 46.609850166512)
 (10.151587562292, 46.609850166512)
 (10.151587562292, 46.614550672808)
 (10.156288068588, 46.614550672808)
 (10.160988574883, 46.614550672808)
 (10.165689081178, 46.614550672808)
 (10.165689081178, 46.619251179103)
 (10.170389587473, 46.619251179103)
 (10.175090093768, 46.619251179103)
 (10.175090093768, 46.623951685398)
 (10.179790600064, 46.623951685398)
 (10.184491106359, 46.623951685398)
 (10.189191612654, 46.623951685398)
 (10.193892118949, 46.623951685398)
 (10.198592625244, 46.623951685398)
 (10.20329313154, 46.623951685398)
 (10.20329313154, 46.619251179103)
 (10.207993637835, 46.619251179103)
 (10.21269414413, 46.619251179103)
 (10.217394650425, 46.619251179103)
 (10.217394650425, 46.623951685398)
 (10.222095156721, 46.623951685398)
 (10.222095156721, 46.628652191693)
 (10.226795663016, 46.628652191693)
 (10.231496169311, 46.628652191693)
 (10.231496169311, 46.633352697988)
 (10.236196675606, 46.633352697988)
 (10.240897181901, 46.633352697988)
 (10.240897181901, 46.628652191693)
 (10.240897181901, 46.623951685398)
 (10.245597688197, 46.623951685398)
 (10.245597688197, 46.619251179103)
 (10.250298194492, 46.619251179103)
 (10.250298194492, 46.614550672808)
 (10.254998700787, 46.614550672808)
 (10.254998700787, 46.609850166512)
 (10.254998700787, 46.605149660217)
 (10.254998700787, 46.600449153922)
 (10.250298194492, 46.600449153922)
 (10.245597688197, 46.600449153922)
 (10.245597688197, 46.595748647627)
 (10.245597688197, 46.591048141331)
 (10.245597688197, 46.586347635036)
 (10.245597688197, 46.581647128741)
 (10.245597688197, 46.576946622446)
 (10.245597688197, 46.572246116151)
 (10.250298194492, 46.572246116151)
 (10.254998700787, 46.572246116151)
 (10.259699207082, 46.572246116151)
 (10.259699207082, 46.576946622446)
 (10.264399713378, 46.576946622446)
 (10.269100219673, 46.576946622446)
 (10.273800725968, 46.576946622446)
 (10.273800725968, 46.572246116151)
 (10.278501232263, 46.572246116151)
 (10.283201738558, 46.572246116151)
 (10.283201738558, 46.567545609855)
 (10.287902244854, 46.567545609855)
 (10.287902244854, 46.56284510356)
 (10.292602751149, 46.56284510356)
 (10.292602751149, 46.558144597265)
 (10.297303257444, 46.558144597265)
 (10.297303257444, 46.55344409097)
 (10.297303257444, 46.548743584675)
 (10.302003763739, 46.548743584675)
 (10.306704270034, 46.548743584675)
 (10.31140477633, 46.548743584675)
 (10.316105282625, 46.548743584675)
 (10.32080578892, 46.548743584675)
 (10.325506295215, 46.548743584675)
 (10.330206801511, 46.548743584675)
 (10.334907307806, 46.548743584675)
 (10.334907307806, 46.544043078379)
 (10.339607814101, 46.544043078379)
 (10.344308320396, 46.544043078379)
 (10.344308320396, 46.548743584675)
 (10.349008826691, 46.548743584675)
 (10.349008826691, 46.55344409097)
 (10.353709332987, 46.55344409097)
 (10.358409839282, 46.55344409097)
 (10.363110345577, 46.55344409097)
 (10.367810851872, 46.55344409097)
 (10.372511358167, 46.55344409097)
 (10.377211864463, 46.55344409097)
 (10.377211864463, 46.548743584675)
 (10.381912370758, 46.548743584675)
 (10.386612877053, 46.548743584675)
 (10.391313383348, 46.548743584675)
 (10.391313383348, 46.544043078379)
 (10.396013889644, 46.544043078379)
 (10.400714395939, 46.544043078379)
 (10.405414902234, 46.544043078379)
 (10.405414902234, 46.548743584675)
 (10.410115408529, 46.548743584675)
 (10.414815914824, 46.548743584675)
 (10.41951642112, 46.548743584675)
 (10.424216927415, 46.548743584675)
 (10.424216927415, 46.544043078379)
 (10.42891743371, 46.544043078379)
 (10.42891743371, 46.539342572084)
 (10.433617940005, 46.539342572084)
 (10.4383184463, 46.539342572084)
 (10.4383184463, 46.534642065789)
 (10.443018952596, 46.534642065789)
 (10.447719458891, 46.534642065789)
 (10.452419965186, 46.534642065789)
 (10.457120471481, 46.534642065789)
 (10.461820977777, 46.534642065789)
 (10.461820977777, 46.539342572084)
 (10.461820977777, 46.544043078379)
 (10.466521484072, 46.544043078379)
 (10.471221990367, 46.544043078379)
 (10.471221990367, 46.548743584675)
 (10.471221990367, 46.55344409097)
 (10.475922496662, 46.55344409097)
 (10.475922496662, 46.558144597265)
 (10.475922496662, 46.56284510356)
 (10.475922496662, 46.567545609855)
 (10.475922496662, 46.572246116151)
 (10.480623002957, 46.572246116151)
 (10.480623002957, 46.576946622446)
 (10.485323509253, 46.576946622446)
 (10.485323509253, 46.581647128741)
 (10.485323509253, 46.586347635036)
 (10.485323509253, 46.591048141331)
 (10.485323509253, 46.595748647627)
 (10.485323509253, 46.600449153922)
 (10.485323509253, 46.605149660217)
 (10.490024015548, 46.605149660217)
 (10.490024015548, 46.609850166512)
 (10.490024015548, 46.614550672808)
 (10.485323509253, 46.614550672808)
 (10.485323509253, 46.619251179103)
 (10.480623002957, 46.619251179103)
 (10.480623002957, 46.623951685398)
 (10.475922496662, 46.623951685398)
 (10.471221990367, 46.623951685398)
 (10.471221990367, 46.628652191693)
 (10.466521484072, 46.628652191693)
 (10.461820977777, 46.628652191693)
 (10.461820977777, 46.633352697988)
 (10.457120471481, 46.633352697988)
 (10.452419965186, 46.633352697988)
 (10.452419965186, 46.638053204284)
 (10.447719458891, 46.638053204284)
 (10.443018952596, 46.638053204284)
 (10.4383184463, 46.638053204284)
 (10.433617940005, 46.638053204284)
 (10.42891743371, 46.638053204284)
 (10.424216927415, 46.638053204284)
 (10.41951642112, 46.638053204284)
 (10.414815914824, 46.638053204284)
 (10.410115408529, 46.638053204284)
 (10.405414902234, 46.638053204284)
 (10.400714395939, 46.638053204284)
 (10.400714395939, 46.642753710579)
 (10.396013889644, 46.642753710579)
 (10.396013889644, 46.647454216874)
 (10.396013889644, 46.652154723169)
 (10.391313383348, 46.652154723169)
 (10.391313383348, 46.656855229464)
 (10.391313383348, 46.66155573576)
 (10.391313383348, 46.666256242055)
 (10.391313383348, 46.67095674835)
 (10.386612877053, 46.67095674835)
 (10.386612877053, 46.675657254645)
 (10.386612877053, 46.680357760941)
 (10.381912370758, 46.680357760941)
 (10.381912370758, 46.685058267236)
 (10.386612877053, 46.685058267236)
 (10.386612877053, 46.689758773531)
 (10.391313383348, 46.689758773531)
 (10.396013889644, 46.689758773531)
 (10.396013889644, 46.694459279826)
 (10.396013889644, 46.699159786121)
 (10.400714395939, 46.699159786121)
 (10.400714395939, 46.703860292417)
 (10.405414902234, 46.703860292417)
 (10.405414902234, 46.708560798712)
 (10.410115408529, 46.708560798712)
 (10.414815914824, 46.708560798712)
 (10.414815914824, 46.713261305007)
 (10.414815914824, 46.717961811302)
 (10.414815914824, 46.722662317597)
 (10.410115408529, 46.722662317597)
 (10.410115408529, 46.727362823893)
 (10.405414902234, 46.727362823893)
 (10.405414902234, 46.732063330188)
 (10.400714395939, 46.732063330188)
 (10.400714395939, 46.736763836483)
 (10.405414902234, 46.736763836483)
 (10.405414902234, 46.741464342778)
 (10.410115408529, 46.741464342778)
 (10.414815914824, 46.741464342778)
 (10.41951642112, 46.741464342778)
 (10.41951642112, 46.746164849074)
 (10.424216927415, 46.746164849074)
 (10.424216927415, 46.750865355369)
 (10.42891743371, 46.750865355369)
 (10.433617940005, 46.750865355369)
 (10.4383184463, 46.750865355369)
 (10.4383184463, 46.755565861664)
 (10.443018952596, 46.755565861664)
 (10.443018952596, 46.760266367959)
 (10.443018952596, 46.764966874254)
 (10.443018952596, 46.76966738055)
 (10.4383184463, 46.76966738055)
 (10.4383184463, 46.774367886845)
 (10.433617940005, 46.774367886845)
 (10.433617940005, 46.77906839314)
 (10.42891743371, 46.77906839314)
 (10.42891743371, 46.783768899435)
 (10.424216927415, 46.783768899435)
 (10.424216927415, 46.78846940573)
 (10.424216927415, 46.788469405731)
 (10.424216927415, 46.793169912026)
 (10.42891743371, 46.793169912026)
 (10.42891743371, 46.797870418321)
 (10.433617940005, 46.797870418321)
 (10.4383184463, 46.797870418321)
 (10.443018952596, 46.797870418321)
 (10.447719458891, 46.797870418321)
 (10.447719458891, 46.802570924616)
 (10.447719458891, 46.807271430911)
 (10.452419965186, 46.807271430911)
 (10.452419965186, 46.811971937207)
 (10.457120471481, 46.811971937207)
 (10.457120471481, 46.816672443502)
 (10.457120471481, 46.821372949797)
 (10.457120471481, 46.826073456092)
 (10.457120471481, 46.830773962387)
 (10.461820977777, 46.830773962387)
 (10.461820977777, 46.835474468683)
 (10.466521484072, 46.835474468683)
 (10.466521484072, 46.840174974978)
 (10.466521484072, 46.844875481273)
 (10.471221990367, 46.844875481273)
 (10.471221990367, 46.849575987568)
 (10.471221990367, 46.854276493864)
 (10.471221990367, 46.858977000159)
 (10.466521484072, 46.858977000159)
 (10.466521484072, 46.863677506454)
 (10.471221990367, 46.863677506454)
 (10.471221990367, 46.868378012749)
 (10.471221990367, 46.873078519044)
 (10.471221990367, 46.87777902534)
 (10.471221990367, 46.882479531635)
 (10.466521484072, 46.882479531635)
 (10.466521484072, 46.88718003793)
 (10.471221990367, 46.88718003793)
 (10.471221990367, 46.891880544225)
 (10.475922496662, 46.891880544225)
 (10.475922496662, 46.89658105052)
 (10.475922496662, 46.901281556816)
 (10.475922496662, 46.905982063111)
 (10.480623002957, 46.905982063111)
 (10.480623002957, 46.910682569406)
 (10.485323509253, 46.910682569406)
 (10.485323509253, 46.915383075701)
 (10.485323509253, 46.920083581997)
 (10.485323509253, 46.924784088292)
 (10.490024015548, 46.924784088292)
 (10.490024015548, 46.929484594587)
 (10.485323509253, 46.929484594587)
 (10.485323509253, 46.934185100882)
 (10.490024015548, 46.934185100882)
 (10.490024015548, 46.938885607177)
 (10.485323509253, 46.938885607177)
 (10.480623002957, 46.938885607177)
 (10.475922496662, 46.938885607177)
 (10.475922496662, 46.943586113473)
 (10.471221990367, 46.943586113473)
 (10.471221990367, 46.948286619768)
 (10.466521484072, 46.948286619768)
 (10.461820977777, 46.948286619768)
 (10.457120471481, 46.948286619768)
 (10.457120471481, 46.952987126063)
 (10.452419965186, 46.952987126063)
 (10.447719458891, 46.952987126063)
 (10.443018952596, 46.952987126063)
 (10.4383184463, 46.952987126063)
 (10.4383184463, 46.957687632358)
 (10.433617940005, 46.957687632358)
 (10.42891743371, 46.957687632358)
 (10.424216927415, 46.957687632358)
 (10.424216927415, 46.962388138653)
 (10.424216927415, 46.967088644949)
 (10.424216927415, 46.971789151244)
 (10.42891743371, 46.971789151244)
 (10.42891743371, 46.976489657539)
 (10.424216927415, 46.976489657539)
 (10.424216927415, 46.981190163834)
 (10.41951642112, 46.981190163834)
 (10.414815914824, 46.981190163834)
 (10.410115408529, 46.981190163834)
 (10.410115408529, 46.98589067013)
 (10.405414902234, 46.98589067013)
 (10.405414902234, 46.990591176425)
 (10.400714395939, 46.990591176425)
 (10.400714395939, 46.99529168272)
 (10.396013889644, 46.99529168272)
 (10.396013889644, 46.999992189015)
 (10.391313383348, 46.999992189015)
 (10.386612877053, 46.999992189015)
 (10.381912370758, 46.999992189015)
 (10.381912370758, 46.99529168272)
 (10.377211864463, 46.99529168272)
 (10.377211864463, 46.990591176425)
 (10.372511358167, 46.990591176425)
 (10.367810851872, 46.990591176425)
 (10.363110345577, 46.990591176425)
 (10.358409839282, 46.990591176425)
 (10.353709332987, 46.990591176425)
 (10.349008826691, 46.990591176425)
 (10.344308320396, 46.990591176425)
 (10.344308320396, 46.98589067013)
 (10.344308320396, 46.981190163834)
 (10.339607814101, 46.981190163834)
 (10.339607814101, 46.976489657539)
 (10.334907307806, 46.976489657539)
 (10.334907307806, 46.971789151244)
 (10.334907307806, 46.967088644949)
 (10.330206801511, 46.967088644949)
 (10.330206801511, 46.962388138653)
 (10.330206801511, 46.957687632358)
 (10.330206801511, 46.952987126063)
 (10.325506295215, 46.952987126063)
 (10.32080578892, 46.952987126063)
 (10.316105282625, 46.952987126063)
 (10.31140477633, 46.952987126063)
 (10.31140477633, 46.948286619768)
 (10.306704270034, 46.948286619768)
 (10.306704270034, 46.943586113473)
 (10.306704270034, 46.938885607177)
 (10.31140477633, 46.938885607177)
 (10.31140477633, 46.934185100882)
 (10.316105282625, 46.934185100882)
 (10.316105282625, 46.929484594587)
 (10.316105282625, 46.924784088292)
 (10.31140477633, 46.924784088292)
 (10.306704270034, 46.924784088292)
 (10.302003763739, 46.924784088292)
 (10.297303257444, 46.924784088292)
 (10.297303257444, 46.920083581997)
 (10.292602751149, 46.920083581997)
 (10.292602751149, 46.924784088292)
 (10.287902244854, 46.924784088292)
 (10.283201738558, 46.924784088292)
 (10.278501232263, 46.924784088292)
 (10.273800725968, 46.924784088292)
 (10.273800725968, 46.929484594587)
 (10.269100219673, 46.929484594587)
 (10.264399713378, 46.929484594587)
 (10.259699207082, 46.929484594587)
 (10.254998700787, 46.929484594587)
 (10.250298194492, 46.929484594587)
 (10.245597688197, 46.929484594587)
 (10.240897181901, 46.929484594587)
 (10.240897181901, 46.924784088292)
 (10.240897181901, 46.920083581997)
 (10.240897181901, 46.915383075701)
 (10.236196675606, 46.915383075701)
 (10.236196675606, 46.910682569406)
 (10.236196675606, 46.905982063111)
 (10.236196675606, 46.901281556816)
 (10.231496169311, 46.901281556816)
 (10.231496169311, 46.89658105052)
 (10.226795663016, 46.89658105052)
 (10.226795663016, 46.891880544225)
 (10.226795663016, 46.88718003793)
 (10.231496169311, 46.88718003793)
 (10.236196675606, 46.88718003793)
 (10.236196675606, 46.882479531635)
 (10.236196675606, 46.87777902534)
 (10.231496169311, 46.87777902534)
 (10.231496169311, 46.873078519044)
 (10.231496169311, 46.868378012749)
 (10.226795663016, 46.868378012749)
 (10.222095156721, 46.868378012749)
 (10.217394650425, 46.868378012749)
 (10.217394650425, 46.863677506454)
 (10.21269414413, 46.863677506454)
 (10.207993637835, 46.863677506454)
 (10.20329313154, 46.863677506454)
 (10.198592625244, 46.863677506454)
 (10.198592625244, 46.868378012749)
 (10.193892118949, 46.868378012749)
 (10.193892118949, 46.863677506454)
 (10.189191612654, 46.863677506454)
 (10.189191612654, 46.858977000159)
 (10.184491106359, 46.858977000159)
 (10.184491106359, 46.854276493864)
 (10.179790600064, 46.854276493864)
 (10.175090093768, 46.854276493864)
 (10.170389587473, 46.854276493864)
 (10.170389587473, 46.849575987568)
 (10.165689081178, 46.849575987568)
 (10.160988574883, 46.849575987568)
 (10.156288068588, 46.849575987568)
 (10.151587562292, 46.849575987568)
 (10.146887055997, 46.849575987568)
 (10.142186549702, 46.849575987568)
 (10.137486043407, 46.849575987568)
 (10.132785537111, 46.849575987568)
 (10.128085030816, 46.849575987568)
 (10.123384524521, 46.849575987568)
 (10.123384524521, 46.844875481273)
 (10.118684018226, 46.844875481273)
 (10.113983511931, 46.844875481273)
 (10.113983511931, 46.840174974978)
 (10.109283005635, 46.840174974978)
 (10.10458249934, 46.840174974978)
 (10.10458249934, 46.844875481273)
 (10.099881993045, 46.844875481273)
 (10.099881993045, 46.849575987568)
 (10.09518148675, 46.849575987568)
 (10.090480980455, 46.849575987568)
 (10.090480980455, 46.854276493864)
 (10.090480980455, 46.858977000159)
 (10.085780474159, 46.858977000159)
 (10.081079967864, 46.858977000159)
 (10.076379461569, 46.858977000159)
 (10.076379461569, 46.863677506454)
 (10.071678955274, 46.863677506454)
 (10.071678955274, 46.858977000159)
 (10.066978448978, 46.858977000159)
 (10.066978448978, 46.863677506454)
 (10.062277942683, 46.863677506454)
 (10.062277942683, 46.858977000159)
 (10.057577436388, 46.858977000159)
 (10.057577436388, 46.863677506454)
 (10.052876930093, 46.863677506454)
 (10.052876930093, 46.868378012749)
 (10.052876930093, 46.873078519044)
 (10.052876930093, 46.87777902534)
 (10.048176423798, 46.87777902534)
 (10.043475917502, 46.87777902534)
 (10.043475917502, 46.882479531635)
 (10.038775411207, 46.882479531635)
 (10.038775411207, 46.88718003793)
 (10.034074904912, 46.88718003793)
 (10.029374398617, 46.88718003793)
 (10.029374398617, 46.891880544225)
 (10.029374398617, 46.89658105052)
 (10.024673892322, 46.89658105052)
 (10.019973386026, 46.89658105052)
 (10.019973386026, 46.901281556816)
 (10.015272879731, 46.901281556816)
 (10.010572373436, 46.901281556816)
 (10.005871867141, 46.901281556816)
 (10.001171360845, 46.901281556816)
 (9.99647085455, 46.901281556816)
 (9.991770348255, 46.901281556816)
 (9.98706984196, 46.901281556816)
 (9.98706984196, 46.905982063111)
 (9.982369335665, 46.905982063111)
 (9.982369335665, 46.910682569406)
 (9.982369335665, 46.915383075701)
 (9.977668829369, 46.915383075701)
 (9.972968323074, 46.915383075701)
 (9.968267816779, 46.915383075701)
 (9.968267816779, 46.910682569406)
 (9.963567310484, 46.910682569406)
 (9.963567310484, 46.915383075701)
 (9.958866804189, 46.915383075701)
 (9.954166297893, 46.915383075701)
 (9.949465791598, 46.915383075701)
 (9.949465791598, 46.910682569406)
 (9.944765285303, 46.910682569406)
 (9.944765285303, 46.915383075701)
 (9.940064779008, 46.915383075701)
 (9.935364272712, 46.915383075701)
 (9.930663766417, 46.915383075701)
 (9.925963260122, 46.915383075701)
 (9.925963260122, 46.920083581997)
 (9.921262753827, 46.920083581997)
 (9.916562247532, 46.920083581997)
 (9.916562247532, 46.924784088292)
 (9.911861741236, 46.924784088292)
 (9.907161234941, 46.924784088292)
 (9.902460728646, 46.924784088292)
 (9.902460728646, 46.929484594587)
 (9.897760222351, 46.929484594587)
 (9.893059716056, 46.929484594587)
 (9.893059716056, 46.934185100882)
 (9.88835920976, 46.934185100882)
 (9.883658703465, 46.934185100882)
 (9.87895819717, 46.934185100882)
 (9.87895819717, 46.938885607177)
 (9.87895819717, 46.943586113473)
 (9.87895819717, 46.948286619768)
 (9.874257690875, 46.948286619768)
 (9.874257690875, 46.952987126063)
 (9.87895819717, 46.952987126063)
 (9.87895819717, 46.957687632358)
 (9.874257690875, 46.957687632358)
 (9.874257690875, 46.962388138653)
 (9.874257690875, 46.967088644949)
 (9.874257690875, 46.971789151244)
 (9.874257690875, 46.976489657539)
 (9.87895819717, 46.976489657539)
 (9.883658703465, 46.976489657539)
 (9.883658703465, 46.981190163834)
 (9.883658703465, 46.98589067013)
 (9.88835920976, 46.98589067013)
 (9.893059716056, 46.98589067013)
 (9.893059716056, 46.990591176425)
 (9.88835920976, 46.990591176425)
 (9.88835920976, 46.99529168272)
 (9.88835920976, 46.999992189015)
 (9.883658703465, 46.999992189015)
 (9.883658703465, 47.00469269531)
 (9.87895819717, 47.00469269531)
 (9.874257690875, 47.00469269531)
 (9.874257690875, 47.009393201606)
 (9.869557184579, 47.009393201606)
 (9.869557184579, 47.014093707901)
 (9.874257690875, 47.014093707901)
 (9.87895819717, 47.014093707901)
 (9.87895819717, 47.018794214196)
 (9.874257690875, 47.018794214196)
 (9.874257690875, 47.023494720491)
 (9.869557184579, 47.023494720491)
 (9.864856678284, 47.023494720491)
 (9.860156171989, 47.023494720491)
 (9.860156171989, 47.018794214196)
 (9.855455665694, 47.018794214196)
 (9.850755159399, 47.018794214196)
 (9.850755159399, 47.014093707901)
 (9.846054653103, 47.014093707901)
 (9.841354146808, 47.014093707901)
 (9.836653640513, 47.014093707901)
 (9.831953134218, 47.014093707901)
 (9.827252627922, 47.014093707901)
 (9.827252627922, 47.018794214196)
 (9.822552121627, 47.018794214196)
 (9.817851615332, 47.018794214196)
 (9.817851615332, 47.023494720491)
 (9.813151109037, 47.023494720491)
 (9.808450602742, 47.023494720491)
 (9.803750096446, 47.023494720491)
 (9.803750096446, 47.028195226786)
 (9.799049590151, 47.028195226786)
 (9.794349083856, 47.028195226786)
 (9.794349083856, 47.032895733082)
 (9.789648577561, 47.032895733082)
 (9.789648577561, 47.037596239377)
 (9.784948071266, 47.037596239377)
 (9.78024756497, 47.037596239377)
 (9.775547058675, 47.037596239377)
 (9.77084655238, 47.037596239377)
 (9.766146046085, 47.037596239377)
 (9.761445539789, 47.037596239377)
 (9.756745033494, 47.037596239377)
 (9.752044527199, 47.037596239377)
 (9.747344020904, 47.037596239377)
 (9.747344020904, 47.042296745672)
 (9.742643514609, 47.042296745672)
 (9.737943008313, 47.042296745672)
 (9.733242502018, 47.042296745672)
 (9.728541995723, 47.042296745672)
 (9.723841489428, 47.042296745672)
 (9.719140983133, 47.042296745672)
 (9.719140983133, 47.046997251967)
 (9.714440476837, 47.046997251967)
 (9.709739970542, 47.046997251967)
 (9.705039464247, 47.046997251967)
 (9.705039464247, 47.051697758263)
 (9.700338957952, 47.051697758263)
 (9.695638451656, 47.051697758263)
 (9.690937945361, 47.051697758263)
 (9.690937945361, 47.056398264558)
 (9.686237439066, 47.056398264558)
 (9.681536932771, 47.056398264558)
 (9.681536932771, 47.061098770853)
 (9.676836426476, 47.061098770853)
 (9.67213592018, 47.061098770853)
 (9.667435413885, 47.061098770853)
 (9.66273490759, 47.061098770853)
 (9.66273490759, 47.056398264558)
 (9.658034401295, 47.056398264558)
 (9.653333895, 47.056398264558)
 (9.653333895, 47.061098770853)
 (9.648633388704, 47.061098770853)
 (9.643932882409, 47.061098770853)
 (9.643932882409, 47.056398264558)
 (9.639232376114, 47.056398264558)
 (9.639232376114, 47.051697758263)
 (9.634531869819, 47.051697758263)
 (9.629831363523, 47.051697758263)
 (9.625130857228, 47.051697758263)
 (9.620430350933, 47.051697758263)
 (9.615729844638, 47.051697758263)
 (9.615729844638, 47.056398264558)
 (9.611029338343, 47.056398264558)
 (9.611029338343, 47.061098770853)
 (9.606328832047, 47.061098770853)
 (9.601628325752, 47.061098770853)
 (9.596927819457, 47.061098770853)
 (9.596927819457, 47.056398264558)
 (9.592227313162, 47.056398264558)
 (9.587526806867, 47.056398264558)
 (9.582826300571, 47.056398264558)
 (9.582826300571, 47.051697758263)
 (9.578125794276, 47.051697758263)
 (9.573425287981, 47.051697758263)
 (9.568724781686, 47.051697758263)
 (9.56402427539, 47.051697758263)
 (9.559323769095, 47.051697758263)
 (9.559323769095, 47.046997251967)
 (9.5546232628, 47.046997251967)
 (9.5546232628, 47.051697758263)
 (9.5546232628, 47.056398264558)
 (9.549922756505, 47.056398264558)
 (9.549922756505, 47.061098770853)
 (9.54522225021, 47.061098770853)
 (9.54522225021, 47.065799277148)
 (9.540521743914, 47.065799277148)
 (9.535821237619, 47.065799277148)
 (9.531120731324, 47.065799277148)
 (9.531120731324, 47.061098770853)
 (9.526420225029, 47.061098770853)
 (9.521719718733, 47.061098770853)
 (9.517019212438, 47.061098770853)
 (9.517019212438, 47.056398264558)
 (9.512318706143, 47.056398264558)
 (9.507618199848, 47.056398264558)
 (9.502917693553, 47.056398264558)
 (9.498217187257, 47.056398264558)
 (9.493516680962, 47.056398264558)
 (9.488816174667, 47.056398264558)
 (9.488816174667, 47.051697758263)
 (9.484115668372, 47.051697758263)
 (9.484115668372, 47.056398264558)
 (9.479415162077, 47.056398264558)
 (9.474714655781, 47.056398264558)
 (9.474714655781, 47.061098770853)
 (9.474714655781, 47.065799277148)
 (9.479415162077, 47.065799277148)
 (9.479415162077, 47.070499783443)
 (9.484115668372, 47.070499783443)
 (9.488816174667, 47.070499783443)
 (9.488816174667, 47.075200289739)
 (9.493516680962, 47.075200289739)
 (9.498217187257, 47.075200289739)
 (9.498217187257, 47.079900796034)
 (9.502917693553, 47.079900796034)
 (9.507618199848, 47.079900796034)
 (9.507618199848, 47.084601302329)
 (9.512318706143, 47.084601302329)
 (9.517019212438, 47.084601302329)
 (9.517019212438, 47.089301808624)
 (9.517019212438, 47.094002314919)
 (9.517019212438, 47.09400231492)
 (9.517019212438, 47.098702821215)
 (9.521719718733, 47.098702821215)
 (9.521719718733, 47.10340332751)
 (9.521719718733, 47.108103833805)
 (9.517019212438, 47.108103833805)
 (9.517019212438, 47.1128043401)
 (9.517019212438, 47.117504846396)
 (9.517019212438, 47.122205352691)
 (9.512318706143, 47.122205352691)
 (9.512318706143, 47.126905858986)
 (9.512318706143, 47.131606365281)
 (9.512318706143, 47.136306871576)
 (9.507618199848, 47.136306871576)
 (9.507618199848, 47.141007377872)
 (9.507618199848, 47.145707884167)
 (9.502917693553, 47.145707884167)
 (9.502917693553, 47.150408390462)
 (9.498217187257, 47.150408390462)
 (9.498217187257, 47.155108896757)
 (9.493516680962, 47.155108896757)
 (9.493516680962, 47.159809403053)
 (9.493516680962, 47.164509909348)
 (9.488816174667, 47.164509909348)
 (9.488816174667, 47.169210415643)
 (9.488816174667, 47.173910921938)
 (9.488816174667, 47.178611428233)
 (9.484115668372, 47.178611428233)
 (9.484115668372, 47.183311934529)
 (9.488816174667, 47.183311934529)
 (9.488816174667, 47.188012440824)
 (9.488816174667, 47.192712947119)
 (9.488816174667, 47.197413453414)
 (9.493516680962, 47.197413453414)
 (9.493516680962, 47.202113959709)
 (9.493516680962, 47.206814466005)
 (9.498217187257, 47.206814466005)
 (9.498217187257, 47.2115149723)
 (9.498217187257, 47.216215478595)
 (9.502917693553, 47.216215478595)
 (9.502917693553, 47.22091598489)
 (9.502917693553, 47.225616491186)
 (9.507618199848, 47.225616491186)
 (9.507618199848, 47.230316997481)
 (9.512318706143, 47.230316997481)
 (9.512318706143, 47.235017503776)
 (9.517019212438, 47.235017503776)
 (9.517019212438, 47.239718010071)
 (9.517019212438, 47.244418516366)
 (9.521719718733, 47.244418516366)
 (9.521719718733, 47.249119022662)
 (9.521719718733, 47.253819528957)
 (9.526420225029, 47.253819528957)
 (9.526420225029, 47.258520035252)
 (9.526420225029, 47.263220541547)
 (9.531120731324, 47.263220541547)
 (9.531120731324, 47.267921047842)
 (9.531120731324, 47.272621554138)
 (9.535821237619, 47.272621554138)
 (9.535821237619, 47.277322060433)
 (9.540521743914, 47.277322060433)
 (9.54522225021, 47.277322060433)
 (9.54522225021, 47.282022566728)
 (9.549922756505, 47.282022566728)
 (9.549922756505, 47.286723073023)
 (9.5546232628, 47.286723073023)
 (9.5546232628, 47.291423579319)
 (9.5546232628, 47.296124085614)
 (9.5546232628, 47.300824591909)
 (9.559323769095, 47.300824591909)
 (9.56402427539, 47.300824591909)
 (9.56402427539, 47.305525098204)
 (9.568724781686, 47.305525098204)
 (9.573425287981, 47.305525098204)
 (9.573425287981, 47.310225604499)
 (9.578125794276, 47.310225604499)
 (9.582826300571, 47.310225604499)
 (9.582826300571, 47.314926110795)
 (9.587526806867, 47.314926110795)
 (9.587526806867, 47.31962661709)
 (9.592227313162, 47.31962661709)
 (9.592227313162, 47.324327123385)
 (9.592227313162, 47.32902762968)
 (9.592227313162, 47.333728135975)
 (9.596927819457, 47.333728135975)
 (9.596927819457, 47.338428642271)
 (9.596927819457, 47.343129148566)
 (9.601628325752, 47.343129148566)
 (9.601628325752, 47.347829654861)
 (9.606328832047, 47.347829654861)
 (9.606328832047, 47.352530161156)
 (9.611029338343, 47.352530161156)
 (9.611029338343, 47.357230667452)
 (9.615729844638, 47.357230667452)
 (9.615729844638, 47.361931173747)
 (9.620430350933, 47.361931173747)
 (9.620430350933, 47.366631680042)
 (9.625130857228, 47.366631680042)
 (9.629831363523, 47.366631680042)
 (9.634531869819, 47.366631680042)
 (9.639232376114, 47.366631680042)
 (9.643932882409, 47.366631680042)
 (9.648633388704, 47.366631680042)
 (9.653333895, 47.366631680042)
 (9.658034401295, 47.366631680042)
 (9.658034401295, 47.371332186337)
 (9.66273490759, 47.371332186337)
 (9.667435413885, 47.371332186337)
 (9.667435413885, 47.376032692632)
 (9.67213592018, 47.376032692632)
 (9.67213592018, 47.380733198928)
 (9.67213592018, 47.385433705223)
 (9.67213592018, 47.390134211518)
 (9.67213592018, 47.394834717813)
 (9.667435413885, 47.394834717813)
 (9.66273490759, 47.394834717813)
 (9.66273490759, 47.399535224108)
 (9.658034401295, 47.399535224108)
 (9.658034401295, 47.404235730404)
 (9.653333895, 47.404235730404)
 (9.653333895, 47.408936236699)
 (9.653333895, 47.413636742994)
 (9.653333895, 47.418337249289)
 (9.648633388704, 47.418337249289)
 (9.648633388704, 47.423037755585)
 (9.648633388704, 47.42773826188)
 (9.643932882409, 47.42773826188)
 (9.643932882409, 47.432438768175)
 (9.643932882409, 47.43713927447)
 (9.648633388704, 47.43713927447)
 (9.648633388704, 47.441839780765)
 (9.653333895, 47.441839780765)
 (9.653333895, 47.446540287061)
 (9.658034401295, 47.446540287061)
 (9.658034401295, 47.451240793356)
 (9.658034401295, 47.455941299651)
 (9.653333895, 47.455941299651)
 (9.648633388704, 47.455941299651)
 (9.643932882409, 47.455941299651)
 (9.639232376114, 47.455941299651)
 (9.634531869819, 47.455941299651)
 (9.629831363523, 47.455941299651)
 (9.625130857228, 47.455941299651)
 (9.620430350933, 47.455941299651)
 (9.620430350933, 47.460641805946)
 (9.615729844638, 47.460641805946)
 (9.615729844638, 47.465342312242)
 (9.611029338343, 47.465342312242)
 (9.611029338343, 47.470042818537)
 (9.606328832047, 47.470042818537)
 (9.606328832047, 47.465342312242)
 (9.606328832047, 47.460641805946)
 (9.601628325752, 47.460641805946)
 (9.596927819457, 47.460641805946)
 (9.596927819457, 47.465342312242)
 (9.592227313162, 47.465342312242)
 (9.592227313162, 47.470042818537)
 (9.587526806867, 47.470042818537)
 (9.587526806867, 47.474743324832)
 (9.587526806867, 47.479443831127)
 (9.582826300571, 47.479443831127)
 (9.582826300571, 47.484144337422)
 (9.578125794276, 47.484144337422)
 (9.578125794276, 47.488844843718)
 (9.573425287981, 47.488844843718)
 (9.568724781686, 47.488844843718)
 (9.568724781686, 47.493545350013)
 (9.56402427539, 47.493545350013)
 (9.56402427539, 47.498245856308)
 (9.559323769095, 47.498245856308)
 (9.559323769095, 47.502946362603)
 (9.559323769095, 47.507646868898)
 (9.559323769095, 47.512347375194)
 (9.559323769095, 47.517047881489)
 (9.5546232628, 47.517047881489)
 (9.5546232628, 47.521748387784)
 (9.5546232628, 47.526448894079)
 (9.5546232628, 47.531149400375)
 (9.549922756505, 47.531149400375)
 (9.549922756505, 47.53584990667)
 (9.54522225021, 47.53584990667)
 (9.540521743914, 47.53584990667)
 (9.535821237619, 47.53584990667)
 (9.531120731324, 47.53584990667)
 (9.526420225029, 47.53584990667)
 (9.521719718733, 47.53584990667)
 (9.517019212438, 47.53584990667)
 (9.512318706143, 47.53584990667)
 (9.512318706143, 47.540550412965)
 (9.507618199848, 47.540550412965)
 (9.507618199848, 47.54525091926)
 (9.502917693553, 47.54525091926)
 (9.502917693553, 47.549951425555)
 (9.498217187257, 47.549951425555)
 (9.498217187257, 47.554651931851)
 (9.493516680962, 47.554651931851)
 (9.493516680962, 47.559352438146)
 (9.488816174667, 47.559352438146)
 (9.484115668372, 47.559352438146)
 (9.484115668372, 47.564052944441)
 (9.479415162077, 47.564052944441)
 (9.479415162077, 47.568753450736)
 (9.474714655781, 47.568753450736)
 (9.474714655781, 47.573453957031)
 (9.470014149486, 47.573453957031)
 (9.470014149486, 47.578154463327)
 (9.465313643191, 47.578154463327)
 (9.465313643191, 47.582854969622)
 (9.460613136896, 47.582854969622)
 (9.460613136896, 47.587555475917)
 (9.4559126306, 47.587555475917)
 (9.451212124305, 47.587555475917)
 (9.451212124305, 47.592255982212)
 (9.44651161801, 47.592255982212)
 (9.44651161801, 47.596956488508)
 (9.441811111715, 47.596956488508)
 (9.43711060542, 47.596956488508)
 (9.432410099124, 47.596956488508)
 (9.432410099124, 47.601656994803)
 (9.427709592829, 47.601656994803)
 (9.423009086534, 47.601656994803)
 (9.418308580239, 47.601656994803)
 (9.418308580239, 47.606357501098)
 (9.413608073944, 47.606357501098)
 (9.408907567648, 47.606357501098)
 (9.404207061353, 47.606357501098)
 (9.404207061353, 47.611058007393)
 (9.399506555058, 47.611058007393)
 (9.394806048763, 47.611058007393)
 (9.390105542467, 47.611058007393)
 (9.390105542467, 47.615758513688)
 (9.385405036172, 47.615758513688)
 (9.380704529877, 47.615758513688)
 (9.376004023582, 47.615758513688)
 (9.376004023582, 47.620459019984)
 (9.371303517287, 47.620459019984)
 (9.366603010991, 47.620459019984)
 (9.366603010991, 47.625159526279)
 (9.361902504696, 47.625159526279)
 (9.357201998401, 47.625159526279)
 (9.352501492106, 47.625159526279)
 (9.352501492106, 47.629860032574)
 (9.347800985811, 47.629860032574)
 (9.343100479515, 47.629860032574)
 (9.33839997322, 47.629860032574)
 (9.33839997322, 47.634560538869)
 (9.333699466925, 47.634560538869)
 (9.32899896063, 47.634560538869)
 (9.324298454334, 47.634560538869)
 (9.324298454334, 47.639261045164)
 (9.319597948039, 47.639261045164)
 (9.314897441744, 47.639261045164)
 (9.310196935449, 47.639261045164)
 (9.310196935449, 47.64396155146)
 (9.305496429154, 47.64396155146)
 (9.300795922858, 47.64396155146)
 (9.296095416563, 47.64396155146)
 (9.296095416563, 47.648662057755)
 (9.291394910268, 47.648662057755)
 (9.286694403973, 47.648662057755)
 (9.281993897678, 47.648662057755)
 (9.281993897678, 47.65336256405)
 (9.277293391382, 47.65336256405)
 (9.272592885087, 47.65336256405)
 (9.267892378792, 47.65336256405)
 (9.267892378792, 47.658063070345)
 (9.263191872497, 47.658063070345)
 (9.258491366201, 47.658063070345)
 (9.253790859906, 47.658063070345)
 (9.249090353611, 47.658063070345)
 (9.244389847316, 47.658063070345)
 (9.239689341021, 47.658063070345)
 (9.234988834725, 47.658063070345)
 (9.23028832843, 47.658063070345)
 (9.225587822135, 47.658063070345)
 (9.22088731584, 47.658063070345)
 (9.216186809544, 47.658063070345)
 (9.211486303249, 47.658063070345)
 (9.206785796954, 47.658063070345)
 (9.206785796954, 47.65336256405)
 (9.202085290659, 47.65336256405)
 (9.202085290659, 47.658063070345)
 (9.197384784364, 47.658063070345)
 (9.192684278068, 47.658063070345)
 (9.187983771773, 47.658063070345)
 (9.183283265478, 47.658063070345)
 (9.178582759183, 47.658063070345)
 (9.178582759183, 47.65336256405)
 (9.173882252888, 47.65336256405)
 (9.169181746592, 47.65336256405)
 (9.169181746592, 47.658063070345)
 (9.164481240297, 47.658063070345)
 (9.164481240297, 47.662763576641)
 (9.159780734002, 47.662763576641)
 (9.159780734002, 47.667464082936)
 (9.155080227707, 47.667464082936)
 (9.150379721411, 47.667464082936)
 (9.145679215116, 47.667464082936)
 (9.145679215116, 47.662763576641)
 (9.140978708821, 47.662763576641)
 (9.136278202526, 47.662763576641)
 (9.136278202526, 47.667464082936)
 (9.131577696231, 47.667464082936)
 (9.126877189935, 47.667464082936)
 (9.12217668364, 47.667464082936)
 (9.117476177345, 47.667464082936)
 (9.117476177345, 47.672164589231)
 (9.11277567105, 47.672164589231)
 (9.108075164755, 47.672164589231)
 (9.108075164755, 47.676865095526)
 (9.103374658459, 47.676865095526)
 (9.098674152164, 47.676865095526)
 (9.093973645869, 47.676865095526)
 (9.089273139574, 47.676865095526)
 (9.089273139574, 47.681565601821)
 (9.084572633278, 47.681565601821)
 (9.084572633278, 47.676865095526)
 (9.079872126983, 47.676865095526)
 (9.075171620688, 47.676865095526)
 (9.075171620688, 47.681565601821)
 (9.070471114393, 47.681565601821)
 (9.065770608098, 47.681565601821)
 (9.061070101802, 47.681565601821)
 (9.056369595507, 47.681565601821)
 (9.056369595507, 47.686266108117)
 (9.051669089212, 47.686266108117)
 (9.046968582917, 47.686266108117)
 (9.042268076622, 47.686266108117)
 (9.037567570326, 47.686266108117)
 (9.032867064031, 47.686266108117)
 (9.028166557736, 47.686266108117)
 (9.023466051441, 47.686266108117)
 (9.018765545145, 47.686266108117)
 (9.01406503885, 47.686266108117)
 (9.009364532555, 47.686266108117)
 (9.009364532555, 47.681565601821)
 (9.00466402626, 47.681565601821)
 (8.999963519965, 47.681565601821)
 (8.995263013669, 47.681565601821)
 (8.995263013669, 47.676865095526)
 (8.990562507374, 47.676865095526)
 (8.985862001079, 47.676865095526)
 (8.981161494784, 47.676865095526)
 (8.981161494784, 47.672164589231)
 (8.976460988489, 47.672164589231)
 (8.971760482193, 47.672164589231)
 (8.971760482193, 47.667464082936)
 (8.967059975898, 47.667464082936)
 (8.962359469603, 47.667464082936)
 (8.962359469603, 47.662763576641)
 (8.957658963308, 47.662763576641)
 (8.952958457012, 47.662763576641)
 (8.952958457012, 47.658063070345)
 (8.948257950717, 47.658063070345)
 (8.943557444422, 47.658063070345)
 (8.938856938127, 47.658063070345)
 (8.934156431832, 47.658063070345)
 (8.929455925536, 47.658063070345)
 (8.929455925536, 47.65336256405)
 (8.924755419241, 47.65336256405)
 (8.920054912946, 47.65336256405)
 (8.915354406651, 47.65336256405)
 (8.910653900356, 47.65336256405)
 (8.910653900356, 47.648662057755)
 (8.90595339406, 47.648662057755)
 (8.901252887765, 47.648662057755)
 (8.89655238147, 47.648662057755)
 (8.891851875175, 47.648662057755)
 (8.887151368879, 47.648662057755)
 (8.887151368879, 47.65336256405)
 (8.882450862584, 47.65336256405)
 (8.877750356289, 47.65336256405)
 (8.873049849994, 47.65336256405)
 (8.873049849994, 47.658063070345)
 (8.873049849994, 47.662763576641)
 (8.873049849994, 47.667464082936)
 (8.873049849994, 47.672164589231)
 (8.868349343699, 47.672164589231)
 (8.868349343699, 47.676865095526)
 (8.863648837403, 47.676865095526)
 (8.863648837403, 47.681565601821)
 (8.858948331108, 47.681565601821)
 (8.854247824813, 47.681565601821)
 (8.849547318518, 47.681565601821)
 (8.849547318518, 47.686266108117)
 (8.854247824813, 47.686266108117)
 (8.854247824813, 47.690966614412)
 (8.858948331108, 47.690966614412)
 (8.858948331108, 47.695667120707)
 (8.863648837403, 47.695667120707)
 (8.868349343699, 47.695667120707)
 (8.873049849994, 47.695667120707)
 (8.873049849994, 47.700367627002)
 (8.873049849994, 47.705068133297)
 (8.868349343699, 47.705068133297)
 (8.863648837403, 47.705068133297)
 (8.858948331108, 47.705068133297)
 (8.854247824813, 47.705068133297)
 (8.849547318518, 47.705068133297)
 (8.844846812222, 47.705068133297)
 (8.844846812222, 47.709768639593)
 (8.844846812222, 47.714469145888)
 (8.840146305927, 47.714469145888)
 (8.835445799632, 47.714469145888)
 (8.830745293337, 47.714469145888)
 (8.830745293337, 47.709768639593)
 (8.826044787042, 47.709768639593)
 (8.821344280746, 47.709768639593)
 (8.821344280746, 47.714469145888)
 (8.826044787042, 47.714469145888)
 (8.826044787042, 47.719169652183)
 (8.821344280746, 47.719169652183)
 (8.816643774451, 47.719169652183)
 (8.816643774451, 47.723870158478)
 (8.811943268156, 47.723870158478)
 (8.807242761861, 47.723870158478)
 (8.807242761861, 47.728570664774)
 (8.811943268156, 47.728570664774)
 (8.811943268156, 47.733271171069)
 (8.807242761861, 47.733271171069)
 (8.807242761861, 47.737971677364)
 (8.802542255566, 47.737971677364)
 (8.79784174927, 47.737971677364)
 (8.79784174927, 47.733271171069)
 (8.79784174927, 47.728570664774)
 (8.793141242975, 47.728570664774)
 (8.78844073668, 47.728570664774)
 (8.783740230385, 47.728570664774)
 (8.783740230385, 47.723870158478)
 (8.779039724089, 47.723870158478)
 (8.774339217794, 47.723870158478)
 (8.774339217794, 47.719169652183)
 (8.769638711499, 47.719169652183)
 (8.769638711499, 47.714469145888)
 (8.769638711499, 47.709768639593)
 (8.769638711499, 47.705068133297)
 (8.774339217794, 47.705068133297)
 (8.779039724089, 47.705068133297)
 (8.783740230385, 47.705068133297)
 (8.78844073668, 47.705068133297)
 (8.793141242975, 47.705068133297)
 (8.79784174927, 47.705068133297)
 (8.79784174927, 47.700367627002)
 (8.79784174927, 47.695667120707)
 (8.802542255566, 47.695667120707)
 (8.807242761861, 47.695667120707)
 (8.811943268156, 47.695667120707)
 (8.811943268156, 47.690966614412)
 (8.807242761861, 47.690966614412)
 (8.802542255566, 47.690966614412)
 (8.79784174927, 47.690966614412)
 (8.79784174927, 47.686266108117)
 (8.793141242975, 47.686266108117)
 (8.793141242975, 47.681565601821)
 (8.793141242975, 47.676865095526)
 (8.78844073668, 47.676865095526)
 (8.783740230385, 47.676865095526)
 (8.779039724089, 47.676865095526)
 (8.779039724089, 47.681565601821)
 (8.774339217794, 47.681565601821)
 (8.769638711499, 47.681565601821)
 (8.769638711499, 47.686266108117)
 (8.764938205204, 47.686266108117)
 (8.760237698909, 47.686266108117)
 (8.760237698909, 47.690966614412)
 (8.755537192613, 47.690966614412)
 (8.750836686318, 47.690966614412)
 (8.746136180023, 47.690966614412)
 (8.741435673728, 47.690966614412)
 (8.736735167433, 47.690966614412)
 (8.732034661137, 47.690966614412)
 (8.727334154842, 47.690966614412)
 (8.727334154842, 47.695667120707)
 (8.727334154842, 47.700367627002)
 (8.727334154842, 47.705068133297)
 (8.732034661137, 47.705068133297)
 (8.732034661137, 47.709768639593)
 (8.732034661137, 47.714469145888)
 (8.736735167433, 47.714469145888)
 (8.736735167433, 47.719169652183)
 (8.732034661137, 47.719169652183)
 (8.727334154842, 47.719169652183)
 (8.722633648547, 47.719169652183)
 (8.722633648547, 47.723870158478)
 (8.717933142252, 47.723870158478)
 (8.713232635956, 47.723870158478)
 (8.713232635956, 47.728570664774)
 (8.713232635956, 47.733271171069)
 (8.713232635956, 47.737971677364)
 (8.717933142252, 47.737971677364)
 (8.717933142252, 47.742672183659)
 (8.722633648547, 47.742672183659)
 (8.722633648547, 47.747372689954)
 (8.727334154842, 47.747372689954)
 (8.732034661137, 47.747372689954)
 (8.736735167433, 47.747372689954)
 (8.741435673728, 47.747372689954)
 (8.741435673728, 47.75207319625)
 (8.736735167433, 47.75207319625)
 (8.736735167433, 47.756773702545)
 (8.732034661137, 47.756773702545)
 (8.732034661137, 47.76147420884)
 (8.727334154842, 47.76147420884)
 (8.722633648547, 47.76147420884)
 (8.717933142252, 47.76147420884)
 (8.717933142252, 47.766174715135)
 (8.713232635956, 47.766174715135)
 (8.708532129661, 47.766174715135)
 (8.708532129661, 47.76147420884)
 (8.703831623366, 47.76147420884)
 (8.699131117071, 47.76147420884)
 (8.699131117071, 47.756773702545)
 (8.694430610776, 47.756773702545)
 (8.68973010448, 47.756773702545)
 (8.68973010448, 47.76147420884)
 (8.685029598185, 47.76147420884)
 (8.685029598185, 47.766174715135)
 (8.685029598185, 47.77087522143)
 (8.68973010448, 47.77087522143)
 (8.68973010448, 47.775575727726)
 (8.685029598185, 47.775575727726)
 (8.685029598185, 47.780276234021)
 (8.68032909189, 47.780276234021)
 (8.68032909189, 47.784976740316)
 (8.675628585595, 47.784976740316)
 (8.6709280793, 47.784976740316)
 (8.6709280793, 47.789677246611)
 (8.666227573004, 47.789677246611)
 (8.661527066709, 47.789677246611)
 (8.656826560414, 47.789677246611)
 (8.656826560414, 47.794377752907)
 (8.661527066709, 47.794377752907)
 (8.661527066709, 47.799078259202)
 (8.656826560414, 47.799078259202)
 (8.652126054119, 47.799078259202)
 (8.647425547823, 47.799078259202)
 (8.647425547823, 47.794377752907)
 (8.647425547823, 47.789677246611)
 (8.647425547823, 47.784976740316)
 (8.647425547823, 47.780276234021)
 (8.647425547823, 47.775575727726)
 (8.652126054119, 47.775575727726)
 (8.652126054119, 47.77087522143)
 (8.647425547823, 47.77087522143)
 (8.647425547823, 47.766174715135)
 (8.642725041528, 47.766174715135)
 (8.638024535233, 47.766174715135)
 (8.638024535233, 47.76147420884)
 (8.633324028938, 47.76147420884)
 (8.628623522643, 47.76147420884)
 (8.623923016347, 47.76147420884)
 (8.623923016347, 47.766174715135)
 (8.619222510052, 47.766174715135)
 (8.619222510052, 47.77087522143)
 (8.619222510052, 47.775575727726)
 (8.623923016347, 47.775575727726)
 (8.623923016347, 47.780276234021)
 (8.619222510052, 47.780276234021)
 (8.614522003757, 47.780276234021)
 (8.614522003757, 47.784976740316)
 (8.619222510052, 47.784976740316)
 (8.619222510052, 47.789677246611)
 (8.619222510052, 47.794377752907)
 (8.619222510052, 47.799078259202)
 (8.614522003757, 47.799078259202)
 (8.609821497462, 47.799078259202)
 (8.609821497462, 47.803778765497)
 (8.605120991167, 47.803778765497)
 (8.600420484871, 47.803778765497)
 (8.595719978576, 47.803778765497)
 (8.595719978576, 47.799078259202)
 (8.591019472281, 47.799078259202)
 (8.591019472281, 47.803778765497)
 (8.586318965986, 47.803778765497)
 (8.58161845969, 47.803778765497)
 (8.58161845969, 47.799078259202)
 (8.576917953395, 47.799078259202)
 (8.5722174471, 47.799078259202)
 (8.5722174471, 47.803778765497)
 (8.5722174471, 47.808479271792)
 (8.567516940805, 47.808479271792)
 (8.567516940805, 47.803778765497)
 (8.56281643451, 47.803778765497)
 (8.56281643451, 47.799078259202)
 (8.56281643451, 47.794377752907)
 (8.567516940805, 47.794377752907)
 (8.567516940805, 47.789677246611)
 (8.5722174471, 47.789677246611)
 (8.5722174471, 47.784976740316)
 (8.576917953395, 47.784976740316)
 (8.576917953395, 47.780276234021)
 (8.5722174471, 47.780276234021)
 (8.567516940805, 47.780276234021)
 (8.56281643451, 47.780276234021)
 (8.558115928214, 47.780276234021)
 (8.558115928214, 47.784976740316)
 (8.553415421919, 47.784976740316)
 (8.548714915624, 47.784976740316)
 (8.548714915624, 47.780276234021)
 (8.544014409329, 47.780276234021)
 (8.539313903033, 47.780276234021)
 (8.534613396738, 47.780276234021)
 (8.529912890443, 47.780276234021)
 (8.529912890443, 47.775575727726)
 (8.525212384148, 47.775575727726)
 (8.520511877853, 47.775575727726)
 (8.520511877853, 47.77087522143)
 (8.515811371557, 47.77087522143)
 (8.515811371557, 47.775575727726)
 (8.511110865262, 47.775575727726)
 (8.506410358967, 47.775575727726)
 (8.501709852672, 47.775575727726)
 (8.501709852672, 47.77087522143)
 (8.497009346377, 47.77087522143)
 (8.492308840081, 47.77087522143)
 (8.487608333786, 47.77087522143)
 (8.482907827491, 47.77087522143)
 (8.482907827491, 47.766174715135)
 (8.478207321196, 47.766174715135)
 (8.4735068149, 47.766174715135)
 (8.4735068149, 47.76147420884)
 (8.468806308605, 47.76147420884)
 (8.468806308605, 47.756773702545)
 (8.468806308605, 47.75207319625)
 (8.46410580231, 47.75207319625)
 (8.459405296015, 47.75207319625)
 (8.459405296015, 47.747372689954)
 (8.45470478972, 47.747372689954)
 (8.45470478972, 47.742672183659)
 (8.45470478972, 47.737971677364)
 (8.450004283424, 47.737971677364)
 (8.450004283424, 47.733271171069)
 (8.450004283424, 47.728570664774)
 (8.45470478972, 47.728570664774)
 (8.45470478972, 47.723870158478)
 (8.450004283424, 47.723870158478)
 (8.445303777129, 47.723870158478)
 (8.440603270834, 47.723870158478)
 (8.440603270834, 47.719169652183)
 (8.435902764539, 47.719169652183)
 (8.435902764539, 47.714469145888)
 (8.431202258244, 47.714469145888)
 (8.431202258244, 47.709768639593)
 (8.426501751948, 47.709768639593)
 (8.421801245653, 47.709768639593)
 (8.417100739358, 47.709768639593)
 (8.412400233063, 47.709768639593)
 (8.412400233063, 47.705068133297)
 (8.412400233063, 47.700367627002)
 (8.407699726767, 47.700367627002)
 (8.402999220472, 47.700367627002)
 (8.402999220472, 47.695667120707)
 (8.407699726767, 47.695667120707)
 (8.412400233063, 47.695667120707)
 (8.412400233063, 47.690966614412)
 (8.417100739358, 47.690966614412)
 (8.417100739358, 47.686266108117)
 (8.421801245653, 47.686266108117)
 (8.421801245653, 47.681565601821)
 (8.417100739358, 47.681565601821)
 (8.412400233063, 47.681565601821)
 (8.412400233063, 47.676865095526)
 (8.407699726767, 47.676865095526)
 (8.407699726767, 47.672164589231)
 (8.407699726767, 47.667464082936)
 (8.412400233063, 47.667464082936)
 (8.417100739358, 47.667464082936)
 (8.421801245653, 47.667464082936)
 (8.426501751948, 47.667464082936)
 (8.426501751948, 47.662763576641)
 (8.431202258244, 47.662763576641)
 (8.431202258244, 47.658063070345)
 (8.435902764539, 47.658063070345)
 (8.440603270834, 47.658063070345)
 (8.440603270834, 47.65336256405)
 (8.445303777129, 47.65336256405)
 (8.450004283424, 47.65336256405)
 (8.45470478972, 47.65336256405)
 (8.459405296015, 47.65336256405)
 (8.46410580231, 47.65336256405)
 (8.46410580231, 47.648662057755)
 (8.46410580231, 47.64396155146)
 (8.468806308605, 47.64396155146)
 (8.468806308605, 47.639261045164)
 (8.4735068149, 47.639261045164)
 (8.478207321196, 47.639261045164)
 (8.478207321196, 47.64396155146)
 (8.478207321196, 47.648662057755)
 (8.482907827491, 47.648662057755)
 (8.482907827491, 47.64396155146)
 (8.487608333786, 47.64396155146)
 (8.492308840081, 47.64396155146)
 (8.497009346377, 47.64396155146)
 (8.497009346377, 47.648662057755)
 (8.501709852672, 47.648662057755)
 (8.506410358967, 47.648662057755)
 (8.511110865262, 47.648662057755)
 (8.515811371557, 47.648662057755)
 (8.520511877853, 47.648662057755)
 (8.520511877853, 47.64396155146)
 (8.525212384148, 47.64396155146)
 (8.529912890443, 47.64396155146)
 (8.529912890443, 47.648662057755)
 (8.529912890443, 47.65336256405)
 (8.529912890443, 47.658063070345)
 (8.525212384148, 47.658063070345)
 (8.525212384148, 47.662763576641)
 (8.529912890443, 47.662763576641)
 (8.534613396738, 47.662763576641)
 (8.534613396738, 47.658063070345)
 (8.539313903033, 47.658063070345)
 (8.539313903033, 47.662763576641)
 (8.539313903033, 47.667464082936)
 (8.544014409329, 47.667464082936)
 (8.548714915624, 47.667464082936)
 (8.553415421919, 47.667464082936)
 (8.558115928214, 47.667464082936)
 (8.56281643451, 47.667464082936)
 (8.567516940805, 47.667464082936)
 (8.567516940805, 47.662763576641)
 (8.5722174471, 47.662763576641)
 (8.576917953395, 47.662763576641)
 (8.58161845969, 47.662763576641)
 (8.586318965986, 47.662763576641)
 (8.586318965986, 47.667464082936)
 (8.591019472281, 47.667464082936)
 (8.595719978576, 47.667464082936)
 (8.595719978576, 47.672164589231)
 (8.600420484871, 47.672164589231)
 (8.605120991167, 47.672164589231)
 (8.605120991167, 47.667464082936)
 (8.609821497462, 47.667464082936)
 (8.609821497462, 47.662763576641)
 (8.614522003757, 47.662763576641)
 (8.619222510052, 47.662763576641)
 (8.619222510052, 47.658063070345)
 (8.623923016347, 47.658063070345)
 (8.628623522643, 47.658063070345)
 (8.628623522643, 47.65336256405)
 (8.628623522643, 47.648662057755)
 (8.628623522643, 47.64396155146)
 (8.623923016347, 47.64396155146)
 (8.623923016347, 47.639261045164)
 (8.619222510052, 47.639261045164)
 (8.614522003757, 47.639261045164)
 (8.609821497462, 47.639261045164)
 (8.605120991167, 47.639261045164)
 (8.605120991167, 47.64396155146)
 (8.609821497462, 47.64396155146)
 (8.614522003757, 47.64396155146)
 (8.614522003757, 47.648662057755)
 (8.609821497462, 47.648662057755)
 (8.609821497462, 47.65336256405)
 (8.605120991167, 47.65336256405)
 (8.600420484871, 47.65336256405)
 (8.600420484871, 47.648662057755)
 (8.600420484871, 47.64396155146)
 (8.595719978576, 47.64396155146)
 (8.595719978576, 47.639261045164)
 (8.595719978576, 47.634560538869)
 (8.595719978576, 47.629860032574)
 (8.600420484871, 47.629860032574)
 (8.600420484871, 47.625159526279)
 (8.600420484871, 47.620459019984)
 (8.605120991167, 47.620459019984)
 (8.605120991167, 47.615758513688)
 (8.605120991167, 47.611058007393)
 (8.600420484871, 47.611058007393)
 (8.600420484871, 47.606357501098)
 (8.595719978576, 47.606357501098)
 (8.591019472281, 47.606357501098)
 (8.591019472281, 47.601656994803)
 (8.586318965986, 47.601656994803)
 (8.586318965986, 47.596956488508)
 (8.58161845969, 47.596956488508)
 (8.576917953395, 47.596956488508)
 (8.5722174471, 47.596956488508)
 (8.567516940805, 47.596956488508)
 (8.56281643451, 47.596956488508)
 (8.56281643451, 47.601656994803)
 (8.56281643451, 47.606357501098)
 (8.567516940805, 47.606357501098)
 (8.567516940805, 47.611058007393)
 (8.5722174471, 47.611058007393)
 (8.5722174471, 47.615758513688)
 (8.567516940805, 47.615758513688)
 (8.567516940805, 47.620459019984)
 (8.56281643451, 47.620459019984)
 (8.558115928214, 47.620459019984)
 (8.558115928214, 47.625159526279)
 (8.553415421919, 47.625159526279)
 (8.548714915624, 47.625159526279)
 (8.544014409329, 47.625159526279)
 (8.544014409329, 47.629860032574)
 (8.539313903033, 47.629860032574)
 (8.534613396738, 47.629860032574)
 (8.534613396738, 47.634560538869)
 (8.529912890443, 47.634560538869)
 (8.525212384148, 47.634560538869)
 (8.520511877853, 47.634560538869)
 (8.515811371557, 47.634560538869)
 (8.515811371557, 47.629860032574)
 (8.515811371557, 47.625159526279)
 (8.511110865262, 47.625159526279)
 (8.511110865262, 47.620459019984)
 (8.506410358967, 47.620459019984)
 (8.506410358967, 47.615758513688)
 (8.501709852672, 47.615758513688)
 (8.497009346377, 47.615758513688)
 (8.492308840081, 47.615758513688)
 (8.487608333786, 47.615758513688)
 (8.482907827491, 47.615758513688)
 (8.482907827491, 47.611058007393)
 (8.478207321196, 47.611058007393)
 (8.4735068149, 47.611058007393)
 (8.4735068149, 47.606357501098)
 (8.468806308605, 47.606357501098)
 (8.468806308605, 47.601656994803)
 (8.46410580231, 47.601656994803)
 (8.459405296015, 47.601656994803)
 (8.459405296015, 47.596956488508)
 (8.459405296015, 47.592255982212)
 (8.459405296015, 47.587555475917)
 (8.46410580231, 47.587555475917)
 (8.46410580231, 47.582854969622)
 (8.468806308605, 47.582854969622)
 (8.4735068149, 47.582854969622)
 (8.478207321196, 47.582854969622)
 (8.478207321196, 47.587555475917)
 (8.482907827491, 47.587555475917)
 (8.487608333786, 47.587555475917)
 (8.492308840081, 47.587555475917)
 (8.492308840081, 47.582854969622)
 (8.492308840081, 47.578154463327)
 (8.487608333786, 47.578154463327)
 (8.482907827491, 47.578154463327)
 (8.478207321196, 47.578154463327)
 (8.478207321196, 47.573453957031)
 (8.4735068149, 47.573453957031)
 (8.468806308605, 47.573453957031)
 (8.46410580231, 47.573453957031)
 (8.459405296015, 47.573453957031)
 (8.45470478972, 47.573453957031)
 (8.45470478972, 47.568753450736)
 (8.450004283424, 47.568753450736)
 (8.445303777129, 47.568753450736)
 (8.440603270834, 47.568753450736)
 (8.440603270834, 47.564052944441)
 (8.435902764539, 47.564052944441)
 (8.431202258244, 47.564052944441)
 (8.426501751948, 47.564052944441)
 (8.426501751948, 47.568753450736)
 (8.421801245653, 47.568753450736)
 (8.417100739358, 47.568753450736)
 (8.412400233063, 47.568753450736)
 (8.412400233063, 47.573453957031)
 (8.407699726767, 47.573453957031)
 (8.402999220472, 47.573453957031)
 (8.402999220472, 47.578154463327)
 (8.398298714177, 47.578154463327)
 (8.398298714177, 47.573453957031)
 (8.393598207882, 47.573453957031)
 (8.388897701587, 47.573453957031)
 (8.388897701587, 47.568753450736)
 (8.384197195291, 47.568753450736)
 (8.384197195291, 47.564052944441)
 (8.379496688996, 47.564052944441)
 (8.379496688996, 47.568753450736)
 (8.374796182701, 47.568753450736)
 (8.370095676406, 47.568753450736)
 (8.365395170111, 47.568753450736)
 (8.360694663815, 47.568753450736)
 (8.35599415752, 47.568753450736)
 (8.351293651225, 47.568753450736)
 (8.34659314493, 47.568753450736)
 (8.341892638634, 47.568753450736)
 (8.337192132339, 47.568753450736)
 (8.332491626044, 47.568753450736)
 (8.327791119749, 47.568753450736)
 (8.327791119749, 47.573453957031)
 (8.323090613454, 47.573453957031)
 (8.318390107158, 47.573453957031)
 (8.318390107158, 47.578154463327)
 (8.313689600863, 47.578154463327)
 (8.313689600863, 47.582854969622)
 (8.308989094568, 47.582854969622)
 (8.304288588273, 47.582854969622)
 (8.304288588273, 47.587555475917)
 (8.299588081978, 47.587555475917)
 (8.294887575682, 47.587555475917)
 (8.294887575682, 47.592255982212)
 (8.294887575682, 47.596956488508)
 (8.294887575682, 47.601656994803)
 (8.294887575682, 47.606357501098)
 (8.294887575682, 47.611058007393)
 (8.290187069387, 47.611058007393)
 (8.285486563092, 47.611058007393)
 (8.280786056797, 47.611058007393)
 (8.276085550501, 47.611058007393)
 (8.271385044206, 47.611058007393)
 (8.266684537911, 47.611058007393)
 (8.261984031616, 47.611058007393)
 (8.261984031616, 47.615758513688)
 (8.257283525321, 47.615758513688)
 (8.252583019025, 47.615758513688)
 (8.24788251273, 47.615758513688)
 (8.24788251273, 47.611058007393)
 (8.243182006435, 47.611058007393)
 (8.23848150014, 47.611058007393)
 (8.233780993844, 47.611058007393)
 (8.233780993844, 47.606357501098)
 (8.229080487549, 47.606357501098)
 (8.224379981254, 47.606357501098)
 (8.224379981254, 47.611058007393)
 (8.219679474959, 47.611058007393)
 (8.219679474959, 47.615758513688)
 (8.214978968664, 47.615758513688)
 (8.214978968664, 47.620459019984)
 (8.210278462368, 47.620459019984)
 (8.205577956073, 47.620459019984)
 (8.200877449778, 47.620459019984)
 (8.196176943483, 47.620459019984)
 (8.196176943483, 47.615758513688)
 (8.191476437188, 47.615758513688)
 (8.191476437188, 47.611058007393)
 (8.186775930892, 47.611058007393)
 (8.186775930892, 47.606357501098)
 (8.182075424597, 47.606357501098)
 (8.182075424597, 47.601656994803)
 (8.177374918302, 47.601656994803)
 (8.172674412007, 47.601656994803)
 (8.172674412007, 47.596956488508)
 (8.167973905711, 47.596956488508)
 (8.167973905711, 47.592255982212)
 (8.163273399416, 47.592255982212)
 (8.158572893121, 47.592255982212)
 (8.158572893121, 47.596956488508)
 (8.153872386826, 47.596956488508)
 (8.149171880531, 47.596956488508)
 (8.144471374235, 47.596956488508)
 (8.144471374235, 47.592255982212)
 (8.13977086794, 47.592255982212)
 (8.13977086794, 47.587555475917)
 (8.135070361645, 47.587555475917)
 (8.135070361645, 47.582854969622)
 (8.13036985535, 47.582854969622)
 (8.125669349055, 47.582854969622)
 (8.120968842759, 47.582854969622)
 (8.116268336464, 47.582854969622)
 (8.111567830169, 47.582854969622)
 (8.106867323874, 47.582854969622)
 (8.106867323874, 47.578154463327)
 (8.102166817578, 47.578154463327)
 (8.102166817578, 47.573453957031)
 (8.102166817578, 47.568753450736)
 (8.102166817578, 47.564052944441)
 (8.097466311283, 47.564052944441)
 (8.097466311283, 47.559352438146)
 (8.092765804988, 47.559352438146)
 (8.088065298693, 47.559352438146)
 (8.083364792398, 47.559352438146)
 (8.078664286102, 47.559352438146)
 (8.078664286102, 47.564052944441)
 (8.073963779807, 47.564052944441)
 (8.069263273512, 47.564052944441)
 (8.064562767217, 47.564052944441)
 (8.059862260922, 47.564052944441)
 (8.055161754626, 47.564052944441)
 (8.055161754626, 47.559352438146)
 (8.050461248331, 47.559352438146)
 (8.050461248331, 47.554651931851)
 (8.045760742036, 47.554651931851)
 (8.041060235741, 47.554651931851)
 (8.036359729445, 47.554651931851)
 (8.03165922315, 47.554651931851)
 (8.03165922315, 47.549951425555)
 (8.026958716855, 47.549951425555)
 (8.02225821056, 47.549951425555)
 (8.017557704265, 47.549951425555)
 (8.012857197969, 47.549951425555)
 (8.008156691674, 47.549951425555)
 (8.008156691674, 47.554651931851)
 (8.003456185379, 47.554651931851)
 (7.998755679084, 47.554651931851)
 (7.994055172789, 47.554651931851)
 (7.989354666493, 47.554651931851)
 (7.984654160198, 47.554651931851)
 (7.979953653903, 47.554651931851)
 (7.975253147608, 47.554651931851)
 (7.970552641312, 47.554651931851)
 (7.965852135017, 47.554651931851)
 (7.965852135017, 47.559352438146)
 (7.961151628722, 47.559352438146)
 (7.961151628722, 47.554651931851)
 (7.956451122427, 47.554651931851)
 (7.951750616132, 47.554651931851)
 (7.951750616132, 47.549951425555)
 (7.951750616132, 47.54525091926)
 (7.947050109836, 47.54525091926)
 (7.942349603541, 47.54525091926)
 (7.937649097246, 47.54525091926)
 (7.932948590951, 47.54525091926)
 (7.928248084656, 47.54525091926)
 (7.92354757836, 47.54525091926)
 (7.918847072065, 47.54525091926)
 (7.918847072065, 47.549951425555)
 (7.91414656577, 47.549951425555)
 (7.909446059475, 47.549951425555)
 (7.909446059475, 47.554651931851)
 (7.909446059475, 47.559352438146)
 (7.909446059475, 47.564052944441)
 (7.909446059475, 47.568753450736)
 (7.909446059475, 47.573453957031)
 (7.904745553179, 47.573453957031)
 (7.904745553179, 47.578154463327)
 (7.900045046884, 47.578154463327)
 (7.900045046884, 47.582854969622)
 (7.895344540589, 47.582854969622)
 (7.895344540589, 47.587555475917)
 (7.890644034294, 47.587555475917)
 (7.885943527999, 47.587555475917)
 (7.881243021703, 47.587555475917)
 (7.881243021703, 47.592255982212)
 (7.876542515408, 47.592255982212)
 (7.876542515408, 47.587555475917)
 (7.871842009113, 47.587555475917)
 (7.867141502818, 47.587555475917)
 (7.862440996522, 47.587555475917)
 (7.857740490227, 47.587555475917)
 (7.857740490227, 47.582854969622)
 (7.853039983932, 47.582854969622)
 (7.848339477637, 47.582854969622)
 (7.843638971342, 47.582854969622)
 (7.838938465046, 47.582854969622)
 (7.834237958751, 47.582854969622)
 (7.834237958751, 47.587555475917)
 (7.829537452456, 47.587555475917)
 (7.824836946161, 47.587555475917)
 (7.820136439866, 47.587555475917)
 (7.81543593357, 47.587555475917)
 (7.81543593357, 47.582854969622)
 (7.81543593357, 47.578154463327)
 (7.81543593357, 47.573453957031)
 (7.810735427275, 47.573453957031)
 (7.810735427275, 47.568753450736)
 (7.80603492098, 47.568753450736)
 (7.801334414685, 47.568753450736)
 (7.801334414685, 47.564052944441)
 (7.801334414685, 47.559352438146)
 (7.796633908389, 47.559352438146)
 (7.791933402094, 47.559352438146)
 (7.791933402094, 47.554651931851)
 (7.787232895799, 47.554651931851)
 (7.782532389504, 47.554651931851)
 (7.777831883209, 47.554651931851)
 (7.777831883209, 47.549951425555)
 (7.773131376913, 47.549951425555)
 (7.768430870618, 47.549951425555)
 (7.763730364323, 47.549951425555)
 (7.759029858028, 47.549951425555)
 (7.754329351733, 47.549951425555)
 (7.754329351733, 47.54525091926)
 (7.749628845437, 47.54525091926)
 (7.744928339142, 47.54525091926)
 (7.740227832847, 47.54525091926)
 (7.735527326552, 47.54525091926)
 (7.730826820256, 47.54525091926)
 (7.726126313961, 47.54525091926)
 (7.721425807666, 47.54525091926)
 (7.721425807666, 47.540550412965)
 (7.716725301371, 47.540550412965)
 (7.712024795076, 47.540550412965)
 (7.70732428878, 47.540550412965)
 (7.70732428878, 47.53584990667)
 (7.702623782485, 47.53584990667)
 (7.69792327619, 47.53584990667)
 (7.69792327619, 47.531149400375)
 (7.693222769895, 47.531149400375)
 (7.6885222636, 47.531149400375)
 (7.683821757304, 47.531149400375)
 (7.679121251009, 47.531149400375)
 (7.674420744714, 47.531149400375)
 (7.674420744714, 47.53584990667)
 (7.669720238419, 47.53584990667)
 (7.665019732123, 47.53584990667)
 (7.665019732123, 47.540550412965)
 (7.660319225828, 47.540550412965)
 (7.660319225828, 47.54525091926)
 (7.655618719533, 47.54525091926)
 (7.650918213238, 47.54525091926)
 (7.650918213238, 47.549951425555)
 (7.646217706943, 47.549951425555)
 (7.646217706943, 47.554651931851)
 (7.641517200647, 47.554651931851)
 (7.641517200647, 47.559352438146)
 (7.636816694352, 47.559352438146)
 (7.636816694352, 47.564052944441)
 (7.641517200647, 47.564052944441)
 (7.646217706943, 47.564052944441)
 (7.650918213238, 47.564052944441)
 (7.655618719533, 47.564052944441)
 (7.660319225828, 47.564052944441)
 (7.665019732123, 47.564052944441)
 (7.669720238419, 47.564052944441)
 (7.674420744714, 47.564052944441)
 (7.679121251009, 47.564052944441)
 (7.679121251009, 47.568753450736)
 (7.683821757304, 47.568753450736)
 (7.6885222636, 47.568753450736)
 (7.6885222636, 47.573453957031)
 (7.683821757304, 47.573453957031)
 (7.683821757304, 47.578154463327)
 (7.683821757304, 47.582854969622)
 (7.679121251009, 47.582854969622)
 (7.674420744714, 47.582854969622)
 (7.674420744714, 47.587555475917)
 (7.674420744714, 47.592255982212)
 (7.669720238419, 47.592255982212)
 (7.665019732123, 47.592255982212)
 (7.660319225828, 47.592255982212)
 (7.660319225828, 47.596956488508)
 (7.655618719533, 47.596956488508)
 (7.650918213238, 47.596956488508)
 (7.646217706943, 47.596956488508)
 (7.646217706943, 47.592255982212)
 (7.641517200647, 47.592255982212)
 (7.641517200647, 47.587555475917)
 (7.636816694352, 47.587555475917)
 (7.632116188057, 47.587555475917)
 (7.632116188057, 47.582854969622)
 (7.627415681762, 47.582854969622)
 (7.627415681762, 47.578154463327)
 (7.622715175467, 47.578154463327)
 (7.618014669171, 47.578154463327)
 (7.613314162876, 47.578154463327)
 (7.608613656581, 47.578154463327)
 (7.603913150286, 47.578154463327)
 (7.603913150286, 47.582854969622)
 (7.603913150286, 47.587555475917)
 (7.59921264399, 47.587555475917)
 (7.594512137695, 47.587555475917)
 (7.5898116314, 47.587555475917)
 (7.585111125105, 47.587555475917)
 (7.585111125105, 47.582854969622)
 (7.585111125105, 47.578154463327)
 (7.58041061881, 47.578154463327)
 (7.575710112514, 47.578154463327)
 (7.571009606219, 47.578154463327)
 (7.566309099924, 47.578154463327)
 (7.561608593629, 47.578154463327)
 (7.561608593629, 47.573453957031)
 (7.556908087333, 47.573453957031)
 (7.556908087333, 47.568753450736)
 (7.556908087333, 47.564052944441)
 (7.552207581038, 47.564052944441)
 (7.547507074743, 47.564052944441)
 (7.547507074743, 47.559352438146)
 (7.542806568448, 47.559352438146)
 (7.538106062153, 47.559352438146)
 (7.538106062153, 47.554651931851)
 (7.533405555857, 47.554651931851)
 (7.528705049562, 47.554651931851)
 (7.528705049562, 47.549951425555)
 (7.524004543267, 47.549951425555)
 (7.519304036972, 47.549951425555)
 (7.514603530677, 47.549951425555)
 (7.514603530677, 47.54525091926)
 (7.509903024381, 47.54525091926)
 (7.505202518086, 47.54525091926)
 (7.505202518086, 47.540550412965)
 (7.500502011791, 47.540550412965)
 (7.500502011791, 47.53584990667)
 (7.500502011791, 47.531149400375)
 (7.505202518086, 47.531149400375)
 (7.505202518086, 47.526448894079)
 (7.509903024381, 47.526448894079)
 (7.509903024381, 47.531149400375)
 (7.514603530677, 47.531149400375)
 (7.519304036972, 47.531149400375)
 (7.524004543267, 47.531149400375)
 (7.528705049562, 47.531149400375)
 (7.528705049562, 47.526448894079)
 (7.528705049562, 47.521748387784)
 (7.524004543267, 47.521748387784)
 (7.524004543267, 47.517047881489)
 (7.519304036972, 47.517047881489)
 (7.514603530677, 47.517047881489)
 (7.509903024381, 47.517047881489)
 (7.505202518086, 47.517047881489)
 (7.500502011791, 47.517047881489)
 (7.500502011791, 47.512347375194)
 (7.505202518086, 47.512347375194)
 (7.505202518086, 47.507646868898)
 (7.509903024381, 47.507646868898)
 (7.509903024381, 47.502946362603)
 (7.509903024381, 47.498245856308)
 (7.509903024381, 47.493545350013)
 (7.505202518086, 47.493545350013)
 (7.500502011791, 47.493545350013)
 (7.500502011791, 47.488844843718)
 (7.495801505496, 47.488844843718)
 (7.495801505496, 47.484144337422)
 (7.4911009992, 47.484144337422)
 (7.486400492905, 47.484144337422)
 (7.48169998661, 47.484144337422)
 (7.48169998661, 47.479443831127)
 (7.476999480315, 47.479443831127)
 (7.47229897402, 47.479443831127)
 (7.47229897402, 47.484144337422)
 (7.467598467724, 47.484144337422)
 (7.462897961429, 47.484144337422)
 (7.462897961429, 47.488844843718)
 (7.458197455134, 47.488844843718)
 (7.453496948839, 47.488844843718)
 (7.453496948839, 47.493545350013)
 (7.448796442544, 47.493545350013)
 (7.444095936248, 47.493545350013)
 (7.439395429953, 47.493545350013)
 (7.439395429953, 47.498245856308)
 (7.434694923658, 47.498245856308)
 (7.429994417363, 47.498245856308)
 (7.429994417363, 47.493545350013)
 (7.429994417363, 47.488844843718)
 (7.425293911067, 47.488844843718)
 (7.425293911067, 47.484144337422)
 (7.420593404772, 47.484144337422)
 (7.420593404772, 47.479443831127)
 (7.425293911067, 47.479443831127)
 (7.429994417363, 47.479443831127)
 (7.434694923658, 47.479443831127)
 (7.439395429953, 47.479443831127)
 (7.444095936248, 47.479443831127)
 (7.448796442544, 47.479443831127)
 (7.448796442544, 47.474743324832)
 (7.453496948839, 47.474743324832)
 (7.453496948839, 47.470042818537)
 (7.453496948839, 47.465342312242)
 (7.448796442544, 47.465342312242)
 (7.448796442544, 47.460641805946)
 (7.444095936248, 47.460641805946)
 (7.439395429953, 47.460641805946)
 (7.434694923658, 47.460641805946)
 (7.429994417363, 47.460641805946)
 (7.429994417363, 47.455941299651)
 (7.429994417363, 47.451240793356)
 (7.425293911067, 47.451240793356)
 (7.425293911067, 47.446540287061)
 (7.420593404772, 47.446540287061)
 (7.415892898477, 47.446540287061)
 (7.415892898477, 47.441839780765)
 (7.411192392182, 47.441839780765)
 (7.406491885887, 47.441839780765)
 (7.406491885887, 47.43713927447)
 (7.401791379591, 47.43713927447)
 (7.397090873296, 47.43713927447)
 (7.392390367001, 47.43713927447)
 (7.392390367001, 47.432438768175)
 (7.387689860706, 47.432438768175)
 (7.382989354411, 47.432438768175)
 (7.378288848115, 47.432438768175)
 (7.37358834182, 47.432438768175)
 (7.368887835525, 47.432438768175)
 (7.36418732923, 47.432438768175)
 (7.359486822934, 47.432438768175)
 (7.354786316639, 47.432438768175)
 (7.350085810344, 47.432438768175)
 (7.350085810344, 47.43713927447)
 (7.345385304049, 47.43713927447)
 (7.340684797754, 47.43713927447)
 (7.335984291458, 47.43713927447)
 (7.331283785163, 47.43713927447)
 (7.326583278868, 47.43713927447)
 (7.321882772573, 47.43713927447)
 (7.317182266278, 47.43713927447)
 (7.312481759982, 47.43713927447)
 (7.312481759982, 47.441839780765)
 (7.307781253687, 47.441839780765)
 (7.307781253687, 47.43713927447)
 (7.303080747392, 47.43713927447)
 (7.298380241097, 47.43713927447)
 (7.298380241097, 47.432438768175)
 (7.293679734801, 47.432438768175)
 (7.288979228506, 47.432438768175)
 (7.284278722211, 47.432438768175)
 (7.279578215916, 47.432438768175)
 (7.274877709621, 47.432438768175)
 (7.270177203325, 47.432438768175)
 (7.270177203325, 47.42773826188)
 (7.26547669703, 47.42773826188)
 (7.260776190735, 47.42773826188)
 (7.260776190735, 47.423037755585)
 (7.25607568444, 47.423037755585)
 (7.251375178144, 47.423037755585)
 (7.246674671849, 47.423037755585)
 (7.241974165554, 47.423037755585)
 (7.241974165554, 47.42773826188)
 (7.241974165554, 47.432438768175)
 (7.237273659259, 47.432438768175)
 (7.237273659259, 47.43713927447)
 (7.232573152964, 47.43713927447)
 (7.227872646668, 47.43713927447)
 (7.227872646668, 47.441839780765)
 (7.223172140373, 47.441839780765)
 (7.223172140373, 47.43713927447)
 (7.218471634078, 47.43713927447)
 (7.213771127783, 47.43713927447)
 (7.209070621488, 47.43713927447)
 (7.209070621488, 47.432438768175)
 (7.204370115192, 47.432438768175)
 (7.199669608897, 47.432438768175)
 (7.199669608897, 47.43713927447)
 (7.194969102602, 47.43713927447)
 (7.190268596307, 47.43713927447)
 (7.190268596307, 47.441839780765)
 (7.185568090011, 47.441839780765)
 (7.180867583716, 47.441839780765)
 (7.176167077421, 47.441839780765)
 (7.171466571126, 47.441839780765)
 (7.171466571126, 47.446540287061)
 (7.176167077421, 47.446540287061)
 (7.176167077421, 47.451240793356)
 (7.176167077421, 47.455941299651)
 (7.176167077421, 47.460641805946)
 (7.176167077421, 47.465342312242)
 (7.176167077421, 47.470042818537)
 (7.180867583716, 47.470042818537)
 (7.180867583716, 47.474743324832)
 (7.180867583716, 47.479443831127)
 (7.185568090011, 47.479443831127)
 (7.185568090011, 47.484144337422)
 (7.190268596307, 47.484144337422)
 (7.190268596307, 47.488844843718)
 (7.194969102602, 47.488844843718)
 (7.199669608897, 47.488844843718)
 (7.199669608897, 47.493545350013)
 (7.194969102602, 47.493545350013)
 (7.190268596307, 47.493545350013)
 (7.185568090011, 47.493545350013)
 (7.180867583716, 47.493545350013)
 (7.180867583716, 47.488844843718)
 (7.176167077421, 47.488844843718)
 (7.171466571126, 47.488844843718)
 (7.166766064831, 47.488844843718)
 (7.162065558535, 47.488844843718)
 (7.162065558535, 47.493545350013)
 (7.15736505224, 47.493545350013)
 (7.15736505224, 47.498245856308)
 (7.152664545945, 47.498245856308)
 (7.14796403965, 47.498245856308)
 (7.143263533355, 47.498245856308)
 (7.143263533355, 47.502946362603)
 (7.138563027059, 47.502946362603)
 (7.133862520764, 47.502946362603)
 (7.129162014469, 47.502946362603)
 (7.124461508174, 47.502946362603)
 (7.124461508174, 47.498245856308)
 (7.119761001878, 47.498245856308)
 (7.119761001878, 47.493545350013)
 (7.115060495583, 47.493545350013)
 (7.110359989288, 47.493545350013)
 (7.105659482993, 47.493545350013)
 (7.100958976698, 47.493545350013)
 (7.096258470402, 47.493545350013)
 (7.091557964107, 47.493545350013)
 (7.091557964107, 47.488844843718)
 (7.086857457812, 47.488844843718)
 (7.082156951517, 47.488844843718)
 (7.077456445222, 47.488844843718)
 (7.072755938926, 47.488844843718)
 (7.068055432631, 47.488844843718)
 (7.068055432631, 47.493545350013)
 (7.063354926336, 47.493545350013)
 (7.058654420041, 47.493545350013)
 (7.053953913745, 47.493545350013)
 (7.04925340745, 47.493545350013)
 (7.044552901155, 47.493545350013)
 (7.044552901155, 47.498245856308)
 (7.03985239486, 47.498245856308)
 (7.035151888565, 47.498245856308)
 (7.030451382269, 47.498245856308)
 (7.030451382269, 47.502946362603)
 (7.025750875974, 47.502946362603)
 (7.021050369679, 47.502946362603)
 (7.016349863384, 47.502946362603)
 (7.011649357089, 47.502946362603)
 (7.006948850793, 47.502946362603)
 (7.002248344498, 47.502946362603)
 (7.002248344498, 47.498245856308)
 (6.997547838203, 47.498245856308)
 (6.992847331908, 47.498245856308)
 (6.992847331908, 47.493545350013)
 (6.988146825612, 47.493545350013)
 (6.988146825612, 47.488844843718)
 (6.988146825612, 47.484144337422)
 (6.988146825612, 47.479443831127)
 (6.988146825612, 47.474743324832)
 (6.992847331908, 47.474743324832)
 (6.992847331908, 47.470042818537)
 (6.992847331908, 47.465342312242)
 (6.997547838203, 47.465342312242)
 (6.997547838203, 47.470042818537)
 (7.002248344498, 47.470042818537)
 (7.002248344498, 47.465342312242)
 (7.002248344498, 47.460641805946)
 (6.997547838203, 47.460641805946)
 (6.997547838203, 47.455941299651)
 (7.002248344498, 47.455941299651)
 (7.002248344498, 47.451240793356)
 (6.997547838203, 47.451240793356)
 (6.992847331908, 47.451240793356)
 (6.988146825612, 47.451240793356)
 (6.983446319317, 47.451240793356)
 (6.983446319317, 47.446540287061)
 (6.978745813022, 47.446540287061)
 (6.974045306727, 47.446540287061)
 (6.969344800432, 47.446540287061)
 (6.969344800432, 47.441839780765)
 (6.969344800432, 47.43713927447)
 (6.964644294136, 47.43713927447)
 (6.959943787841, 47.43713927447)
 (6.959943787841, 47.432438768175)
 (6.955243281546, 47.432438768175)
 (6.955243281546, 47.43713927447)
 (6.950542775251, 47.43713927447)
 (6.945842268956, 47.43713927447)
 (6.945842268956, 47.432438768175)
 (6.94114176266, 47.432438768175)
 (6.94114176266, 47.42773826188)
 (6.94114176266, 47.423037755585)
 (6.94114176266, 47.418337249289)
 (6.94114176266, 47.413636742994)
 (6.94114176266, 47.408936236699)
 (6.94114176266, 47.404235730404)
 (6.936441256365, 47.404235730404)
 (6.93174075007, 47.404235730404)
 (6.927040243775, 47.404235730404)
 (6.922339737479, 47.404235730404)
 (6.917639231184, 47.404235730404)
 (6.917639231184, 47.399535224108)
 (6.912938724889, 47.399535224108)
 (6.912938724889, 47.394834717813)
 (6.912938724889, 47.390134211518)
 (6.912938724889, 47.385433705223)
 (6.908238218594, 47.385433705223)
 (6.903537712299, 47.385433705223)
 (6.898837206003, 47.385433705223)
 (6.898837206003, 47.380733198928)
 (6.894136699708, 47.380733198928)
 (6.889436193413, 47.380733198928)
 (6.889436193413, 47.376032692632)
 (6.884735687118, 47.376032692632)
 (6.884735687118, 47.371332186337)
 (6.884735687118, 47.366631680042)
 (6.884735687118, 47.361931173747)
 (6.880035180822, 47.361931173747)
 (6.880035180822, 47.357230667452)
 (6.880035180822, 47.352530161156)
 (6.884735687118, 47.352530161156)
 (6.889436193413, 47.352530161156)
 (6.889436193413, 47.357230667452)
 (6.894136699708, 47.357230667452)
 (6.898837206003, 47.357230667452)
 (6.903537712299, 47.357230667452)
 (6.908238218594, 47.357230667452)
 (6.912938724889, 47.357230667452)
 (6.917639231184, 47.357230667452)
 (6.922339737479, 47.357230667452)
 (6.927040243775, 47.357230667452)
 (6.93174075007, 47.357230667452)
 (6.936441256365, 47.357230667452)
 (6.94114176266, 47.357230667452)
 (6.945842268956, 47.357230667452)
 (6.950542775251, 47.357230667452)
 (6.955243281546, 47.357230667452)
 (6.959943787841, 47.357230667452)
 (6.964644294136, 47.357230667452)
 (6.964644294136, 47.361931173747)
 (6.969344800432, 47.361931173747)
 (6.974045306727, 47.361931173747)
 (6.978745813022, 47.361931173747)
 (6.983446319317, 47.361931173747)
 (6.988146825612, 47.361931173747)
 (6.992847331908, 47.361931173747)
 (6.997547838203, 47.361931173747)
 (6.997547838203, 47.366631680042)
 (7.002248344498, 47.366631680042)
 (7.006948850793, 47.366631680042)
 (7.011649357089, 47.366631680042)
 (7.011649357089, 47.371332186337)
 (7.016349863384, 47.371332186337)
 (7.021050369679, 47.371332186337)
 (7.025750875974, 47.371332186337)
 (7.030451382269, 47.371332186337)
 (7.035151888565, 47.371332186337)
 (7.035151888565, 47.366631680042)
 (7.035151888565, 47.361931173747)
 (7.03985239486, 47.361931173747)
 (7.044552901155, 47.361931173747)
 (7.04925340745, 47.361931173747)
 (7.04925340745, 47.357230667452)
 (7.04925340745, 47.352530161156)
 (7.04925340745, 47.347829654861)
 (7.053953913745, 47.347829654861)
 (7.058654420041, 47.347829654861)
 (7.058654420041, 47.343129148566)
 (7.058654420041, 47.338428642271)
 (7.053953913745, 47.338428642271)
 (7.053953913745, 47.333728135975)
 (7.04925340745, 47.333728135975)
 (7.04925340745, 47.32902762968)
 (7.044552901155, 47.32902762968)
 (7.03985239486, 47.32902762968)
 (7.035151888565, 47.32902762968)
 (7.030451382269, 47.32902762968)
 (7.025750875974, 47.32902762968)
 (7.025750875974, 47.324327123385)
 (7.021050369679, 47.324327123385)
 (7.016349863384, 47.324327123385)
 (7.011649357089, 47.324327123385)
 (7.006948850793, 47.324327123385)
 (7.006948850793, 47.31962661709)
 (7.011649357089, 47.31962661709)
 (7.016349863384, 47.31962661709)
 (7.016349863384, 47.314926110795)
 (7.016349863384, 47.310225604499)
 (7.011649357089, 47.310225604499)
 (7.011649357089, 47.305525098204)
 (7.006948850793, 47.305525098204)
 (7.006948850793, 47.300824591909)
 (7.002248344498, 47.300824591909)
 (6.997547838203, 47.300824591909)
 (6.997547838203, 47.296124085614)
 (6.992847331908, 47.296124085614)
 (6.988146825612, 47.296124085614)
 (6.983446319317, 47.296124085614)
 (6.978745813022, 47.296124085614)
 (6.974045306727, 47.296124085614)
 (6.974045306727, 47.291423579319)
 (6.969344800432, 47.291423579319)
 (6.964644294136, 47.291423579319)
 (6.959943787841, 47.291423579319)
 (6.955243281546, 47.291423579319)
 (6.950542775251, 47.291423579319)
 (6.945842268956, 47.291423579319)
 (6.945842268956, 47.286723073023)
 (6.94114176266, 47.286723073023)
 (6.94114176266, 47.282022566728)
 (6.945842268956, 47.282022566728)
 (6.945842268956, 47.277322060433)
 (6.950542775251, 47.277322060433)
 (6.950542775251, 47.272621554138)
 (6.950542775251, 47.267921047842)
 (6.950542775251, 47.263220541547)
 (6.950542775251, 47.258520035252)
 (6.950542775251, 47.253819528957)
 (6.945842268956, 47.253819528957)
 (6.945842268956, 47.249119022662)
 (6.950542775251, 47.249119022662)
 (6.950542775251, 47.244418516366)
 (6.950542775251, 47.239718010071)
 (6.945842268956, 47.239718010071)
 (6.94114176266, 47.239718010071)
 (6.94114176266, 47.235017503776)
 (6.94114176266, 47.230316997481)
 (6.936441256365, 47.230316997481)
 (6.93174075007, 47.230316997481)
 (6.927040243775, 47.230316997481)
 (6.927040243775, 47.225616491186)
 (6.922339737479, 47.225616491186)
 (6.922339737479, 47.22091598489)
 (6.917639231184, 47.22091598489)
 (6.912938724889, 47.22091598489)
 (6.912938724889, 47.216215478595)
 (6.908238218594, 47.216215478595)
 (6.903537712299, 47.216215478595)
 (6.903537712299, 47.2115149723)
 (6.898837206003, 47.2115149723)
 (6.898837206003, 47.206814466005)
 (6.894136699708, 47.206814466005)
 (6.889436193413, 47.206814466005)
 (6.889436193413, 47.202113959709)
 (6.884735687118, 47.202113959709)
 (6.880035180822, 47.202113959709)
 (6.880035180822, 47.197413453414)
 (6.875334674527, 47.197413453414)
 (6.875334674527, 47.192712947119)
 (6.875334674527, 47.188012440824)
 (6.875334674527, 47.183311934529)
 (6.870634168232, 47.183311934529)
 (6.865933661937, 47.183311934529)
 (6.865933661937, 47.178611428233)
 (6.861233155642, 47.178611428233)
 (6.856532649346, 47.178611428233)
 (6.851832143051, 47.178611428233)
 (6.851832143051, 47.173910921938)
 (6.847131636756, 47.173910921938)
 (6.842431130461, 47.173910921938)
 (6.842431130461, 47.169210415643)
 (6.842431130461, 47.164509909348)
 (6.847131636756, 47.164509909348)
 (6.851832143051, 47.164509909348)
 (6.856532649346, 47.164509909348)
 (6.856532649346, 47.159809403053)
 (6.851832143051, 47.159809403053)
 (6.851832143051, 47.155108896757)
 (6.847131636756, 47.155108896757)
 (6.842431130461, 47.155108896757)
 (6.837730624166, 47.155108896757)
 (6.837730624166, 47.150408390462)
 (6.83303011787, 47.150408390462)
 (6.83303011787, 47.145707884167)
 (6.828329611575, 47.145707884167)
 (6.82362910528, 47.145707884167)
 (6.82362910528, 47.141007377872)
 (6.818928598985, 47.141007377872)
 (6.818928598985, 47.136306871576)
 (6.814228092689, 47.136306871576)
 (6.809527586394, 47.136306871576)
 (6.804827080099, 47.136306871576)
 (6.804827080099, 47.131606365281)
 (6.800126573804, 47.131606365281)
 (6.800126573804, 47.126905858986)
 (6.795426067509, 47.126905858986)
 (6.790725561213, 47.126905858986)
 (6.786025054918, 47.126905858986)
 (6.781324548623, 47.126905858986)
 (6.781324548623, 47.122205352691)
 (6.776624042328, 47.122205352691)
 (6.771923536033, 47.122205352691)
 (6.767223029737, 47.122205352691)
 (6.762522523442, 47.122205352691)
 (6.762522523442, 47.117504846396)
 (6.757822017147, 47.117504846396)
 (6.753121510852, 47.117504846396)
 (6.753121510852, 47.1128043401)
 (6.748421004556, 47.1128043401)
 (6.748421004556, 47.108103833805)
 (6.743720498261, 47.108103833805)
 (6.739019991966, 47.108103833805)
 (6.739019991966, 47.10340332751)
 (6.743720498261, 47.10340332751)
 (6.743720498261, 47.098702821215)
 (6.743720498261, 47.09400231492)
 (6.743720498261, 47.094002314919)
 (6.743720498261, 47.089301808624)
 (6.739019991966, 47.089301808624)
 (6.734319485671, 47.089301808624)
 (6.729618979376, 47.089301808624)
 (6.72491847308, 47.089301808624)
 (6.720217966785, 47.089301808624)
 (6.71551746049, 47.089301808624)
 (6.71551746049, 47.084601302329)
 (6.710816954195, 47.084601302329)
 (6.7061164479, 47.084601302329)
 (6.7061164479, 47.079900796034)
 (6.7061164479, 47.075200289739)
 (6.7061164479, 47.070499783443)
 (6.701415941604, 47.070499783443)
 (6.696715435309, 47.070499783443)
 (6.692014929014, 47.070499783443)
 (6.692014929014, 47.065799277148)
 (6.696715435309, 47.065799277148)
 (6.696715435309, 47.061098770853)
 (6.701415941604, 47.061098770853)
 (6.7061164479, 47.061098770853)
 (6.7061164479, 47.056398264558)
 (6.710816954195, 47.056398264558)
 (6.71551746049, 47.056398264558)
 (6.71551746049, 47.051697758263)
 (6.71551746049, 47.046997251967)
 (6.710816954195, 47.046997251967)
 (6.710816954195, 47.042296745672)
 (6.7061164479, 47.042296745672)
 (6.7061164479, 47.037596239377)
 (6.701415941604, 47.037596239377)
 (6.696715435309, 47.037596239377)
 (6.692014929014, 47.037596239377)
 (6.687314422719, 47.037596239377)
 (6.687314422719, 47.032895733082)
 (6.682613916423, 47.032895733082)
 (6.677913410128, 47.032895733082)
 (6.673212903833, 47.032895733082)
 (6.668512397538, 47.032895733082)
 (6.668512397538, 47.028195226786)
 (6.663811891243, 47.028195226786)
 (6.663811891243, 47.023494720491)
 (6.659111384947, 47.023494720491)
 (6.654410878652, 47.023494720491)
 (6.654410878652, 47.018794214196)
 (6.654410878652, 47.014093707901)
 (6.649710372357, 47.014093707901)
 (6.649710372357, 47.009393201606)
 (6.645009866062, 47.009393201606)
 (6.640309359767, 47.009393201606)
 (6.640309359767, 47.00469269531)
 (6.635608853471, 47.00469269531)
 (6.635608853471, 46.999992189015)
 (6.630908347176, 46.999992189015)
 (6.630908347176, 46.99529168272)
 (6.626207840881, 46.99529168272)
 (6.621507334586, 46.99529168272)
 (6.61680682829, 46.99529168272)
 (6.612106321995, 46.99529168272)
 (6.612106321995, 46.990591176425)
 (6.6074058157, 46.990591176425)
 (6.602705309405, 46.990591176425)
 (6.59800480311, 46.990591176425)
 (6.593304296814, 46.990591176425)
 (6.588603790519, 46.990591176425)
 (6.588603790519, 46.98589067013)
 (6.583903284224, 46.98589067013)
 (6.579202777929, 46.98589067013)
 (6.579202777929, 46.981190163834)
 (6.574502271633, 46.981190163834)
 (6.569801765338, 46.981190163834)
 (6.565101259043, 46.981190163834)
 (6.560400752748, 46.981190163834)
 (6.560400752748, 46.976489657539)
 (6.555700246453, 46.976489657539)
 (6.550999740157, 46.976489657539)
 (6.546299233862, 46.976489657539)
 (6.541598727567, 46.976489657539)
 (6.536898221272, 46.976489657539)
 (6.536898221272, 46.971789151244)
 (6.532197714977, 46.971789151244)
 (6.527497208681, 46.971789151244)
 (6.522796702386, 46.971789151244)
 (6.518096196091, 46.971789151244)
 (6.513395689796, 46.971789151244)
 (6.513395689796, 46.967088644949)
 (6.5086951835, 46.967088644949)
 (6.503994677205, 46.967088644949)
 (6.49929417091, 46.967088644949)
 (6.49929417091, 46.971789151244)
 (6.494593664615, 46.971789151244)
 (6.48989315832, 46.971789151244)
 (6.48989315832, 46.967088644949)
 (6.485192652024, 46.967088644949)
 (6.485192652024, 46.962388138653)
 (6.480492145729, 46.962388138653)
 (6.475791639434, 46.962388138653)
 (6.475791639434, 46.957687632358)
 (6.471091133139, 46.957687632358)
 (6.466390626844, 46.957687632358)
 (6.466390626844, 46.952987126063)
 (6.461690120548, 46.952987126063)
 (6.461690120548, 46.948286619768)
 (6.456989614253, 46.948286619768)
 (6.456989614253, 46.943586113473)
 (6.452289107958, 46.943586113473)
 (6.452289107958, 46.938885607177)
 (6.447588601663, 46.938885607177)
 (6.442888095367, 46.938885607177)
 (6.442888095367, 46.934185100882)
 (6.438187589072, 46.934185100882)
 (6.438187589072, 46.929484594587)
 (6.433487082777, 46.929484594587)
 (6.433487082777, 46.924784088292)
 (6.438187589072, 46.924784088292)
 (6.438187589072, 46.920083581997)
 (6.442888095367, 46.920083581997)
 (6.442888095367, 46.915383075701)
 (6.447588601663, 46.915383075701)
 (6.447588601663, 46.910682569406)
 (6.452289107958, 46.910682569406)
 (6.452289107958, 46.905982063111)
 (6.456989614253, 46.905982063111)
 (6.456989614253, 46.901281556816)
 (6.456989614253, 46.89658105052)
 (6.461690120548, 46.89658105052)
 (6.461690120548, 46.891880544225)
 (6.461690120548, 46.88718003793)
 (6.466390626844, 46.88718003793)
 (6.466390626844, 46.882479531635)
 (6.466390626844, 46.87777902534)
 (6.466390626844, 46.873078519044)
 (6.466390626844, 46.868378012749)
 (6.466390626844, 46.863677506454)
 (6.461690120548, 46.863677506454)
 (6.461690120548, 46.858977000159)
 (6.461690120548, 46.854276493864)
 (6.461690120548, 46.849575987568)
 (6.456989614253, 46.849575987568)
 (6.456989614253, 46.844875481273)
 (6.452289107958, 46.844875481273)
 (6.447588601663, 46.844875481273)
 (6.447588601663, 46.840174974978)
 (6.447588601663, 46.835474468683)
 (6.442888095367, 46.835474468683)
 (6.442888095367, 46.830773962387)
 (6.442888095367, 46.826073456092)
 (6.442888095367, 46.821372949797)
 (6.442888095367, 46.816672443502)
 (6.438187589072, 46.816672443502)
 (6.438187589072, 46.811971937207)
 (6.433487082777, 46.811971937207)
 (6.433487082777, 46.807271430911)
 (6.433487082777, 46.802570924616)
 (6.438187589072, 46.802570924616)
 (6.438187589072, 46.797870418321)
 (6.442888095367, 46.797870418321)
 (6.447588601663, 46.797870418321)
 (6.447588601663, 46.793169912026)
 (6.452289107958, 46.793169912026)
 (6.452289107958, 46.78846940573)
 (6.456989614253, 46.78846940573)
 (6.456989614253, 46.783768899435)
 (6.456989614253, 46.77906839314)
 (6.452289107958, 46.77906839314)
 (6.452289107958, 46.774367886845)
 (6.447588601663, 46.774367886845)
 (6.447588601663, 46.76966738055)
 (6.442888095367, 46.76966738055)
 (6.442888095367, 46.764966874254)
 (6.438187589072, 46.764966874254)
 (6.438187589072, 46.760266367959)
 (6.433487082777, 46.760266367959)
 (6.428786576482, 46.760266367959)
 (6.428786576482, 46.755565861664)
 (6.424086070187, 46.755565861664)
 (6.419385563891, 46.755565861664)
 (6.414685057596, 46.755565861664)
 (6.409984551301, 46.755565861664)
 (6.409984551301, 46.750865355369)
 (6.405284045006, 46.750865355369)
 (6.400583538711, 46.750865355369)
 (6.400583538711, 46.746164849074)
 (6.395883032415, 46.746164849074)
 (6.39118252612, 46.746164849074)
 (6.386482019825, 46.746164849074)
 (6.386482019825, 46.741464342778)
 (6.39118252612, 46.741464342778)
 (6.39118252612, 46.736763836483)
 (6.386482019825, 46.736763836483)
 (6.386482019825, 46.732063330188)
 (6.38178151353, 46.732063330188)
 (6.377081007234, 46.732063330188)
 (6.372380500939, 46.732063330188)
 (6.367679994644, 46.732063330188)
 (6.367679994644, 46.727362823893)
 (6.372380500939, 46.727362823893)
 (6.372380500939, 46.722662317597)
 (6.367679994644, 46.722662317597)
 (6.362979488349, 46.722662317597)
 (6.358278982054, 46.722662317597)
 (6.358278982054, 46.717961811302)
 (6.353578475758, 46.717961811302)
 (6.348877969463, 46.717961811302)
 (6.348877969463, 46.713261305007)
 (6.344177463168, 46.713261305007)
 (6.339476956873, 46.713261305007)
 (6.339476956873, 46.708560798712)
 (6.334776450578, 46.708560798712)
 (6.330075944282, 46.708560798712)
 (6.330075944282, 46.703860292417)
 (6.325375437987, 46.703860292417)
 (6.320674931692, 46.703860292417)
 (6.315974425397, 46.703860292417)
 (6.315974425397, 46.699159786121)
 (6.311273919101, 46.699159786121)
 (6.306573412806, 46.699159786121)
 (6.301872906511, 46.699159786121)
 (6.301872906511, 46.694459279826)
 (6.297172400216, 46.694459279826)
 (6.292471893921, 46.694459279826)
 (6.292471893921, 46.689758773531)
 (6.287771387625, 46.689758773531)
 (6.28307088133, 46.689758773531)
 (6.28307088133, 46.685058267236)
 (6.278370375035, 46.685058267236)
 (6.27366986874, 46.685058267236)
 (6.27366986874, 46.680357760941)
 (6.268969362444, 46.680357760941)
 (6.268969362444, 46.675657254645)
 (6.264268856149, 46.675657254645)
 (6.264268856149, 46.67095674835)
 (6.259568349854, 46.67095674835)
 (6.259568349854, 46.666256242055)
 (6.254867843559, 46.666256242055)
 (6.250167337264, 46.666256242055)
 (6.250167337264, 46.66155573576)
 (6.245466830968, 46.66155573576)
 (6.245466830968, 46.656855229464)
 (6.240766324673, 46.656855229464)
 (6.236065818378, 46.656855229464)
 (6.236065818378, 46.652154723169)
 (6.231365312083, 46.652154723169)
 (6.226664805788, 46.652154723169)
 (6.226664805788, 46.647454216874)
 (6.221964299492, 46.647454216874)
 (6.221964299492, 46.642753710579)
 (6.217263793197, 46.642753710579)
 (6.212563286902, 46.642753710579)
 (6.212563286902, 46.638053204284)
 (6.207862780607, 46.638053204284)
 (6.203162274311, 46.638053204284)
 (6.203162274311, 46.633352697988)
 (6.198461768016, 46.633352697988)
 (6.198461768016, 46.628652191693)
 (6.193761261721, 46.628652191693)
 (6.193761261721, 46.623951685398)
 (6.189060755426, 46.623951685398)
 (6.184360249131, 46.623951685398)
 (6.184360249131, 46.619251179103)
 (6.179659742835, 46.619251179103)
 (6.179659742835, 46.614550672808)
 (6.17495923654, 46.614550672808)
 (6.170258730245, 46.614550672808)
 (6.170258730245, 46.609850166512)
 (6.16555822395, 46.609850166512)
 (6.160857717655, 46.609850166512)
 (6.156157211359, 46.609850166512)
 (6.156157211359, 46.605149660217)
 (6.151456705064, 46.605149660217)
 (6.146756198769, 46.605149660217)
 (6.146756198769, 46.600449153922)
 (6.142055692474, 46.600449153922)
 (6.137355186178, 46.600449153922)
 (6.137355186178, 46.595748647627)
 (6.132654679883, 46.595748647627)
 (6.127954173588, 46.595748647627)
 (6.127954173588, 46.591048141331)
 (6.127954173588, 46.586347635036)
 (6.123253667293, 46.586347635036)
 (6.123253667293, 46.581647128741)
 (6.118553160998, 46.581647128741)
 (6.118553160998, 46.576946622446)
 (6.113852654702, 46.576946622446)
 (6.113852654702, 46.572246116151)
 (6.118553160998, 46.572246116151)
 (6.123253667293, 46.572246116151)
 (6.123253667293, 46.567545609855)
 (6.127954173588, 46.567545609855)
 (6.127954173588, 46.56284510356)
 (6.132654679883, 46.56284510356)
 (6.137355186178, 46.56284510356)
 (6.137355186178, 46.558144597265)
 (6.142055692474, 46.558144597265)
 (6.142055692474, 46.55344409097)
 (6.146756198769, 46.55344409097)
 (6.146756198769, 46.548743584675)
 (6.151456705064, 46.548743584675)
 (6.156157211359, 46.548743584675)
 (6.156157211359, 46.544043078379)
 (6.151456705064, 46.544043078379)
 (6.151456705064, 46.539342572084)
 (6.151456705064, 46.534642065789)
 (6.151456705064, 46.529941559494)
 (6.146756198769, 46.529941559494)
 (6.142055692474, 46.529941559494)
 (6.142055692474, 46.534642065789)
 (6.137355186178, 46.534642065789)
 (6.137355186178, 46.529941559494)
 (6.132654679883, 46.529941559494)
 (6.132654679883, 46.525241053198)
 (6.127954173588, 46.525241053198)
 (6.127954173588, 46.520540546903)
 (6.123253667293, 46.520540546903)
 (6.123253667293, 46.515840040608)
 (6.118553160998, 46.515840040608)
 (6.118553160998, 46.511139534313)
 (6.113852654702, 46.511139534313)
 (6.113852654702, 46.506439028018)
 (6.109152148407, 46.506439028018)
 (6.109152148407, 46.501738521722)
 (6.109152148407, 46.497038015427)
 (6.104451642112, 46.497038015427)
 (6.104451642112, 46.492337509132)
 (6.104451642112, 46.487637002837)
 (6.099751135817, 46.487637002837)
 (6.099751135817, 46.482936496542)
 (6.099751135817, 46.482936496541)
 (6.099751135817, 46.478235990246)
 (6.095050629522, 46.478235990246)
 (6.090350123226, 46.478235990246)
 (6.090350123226, 46.473535483951)
 (6.085649616931, 46.473535483951)
 (6.080949110636, 46.473535483951)
 (6.080949110636, 46.468834977656)
 (6.076248604341, 46.468834977656)
 (6.076248604341, 46.464134471361)
 (6.076248604341, 46.459433965065)
 (6.076248604341, 46.45473345877)
 (6.076248604341, 46.450032952475)
 (6.080949110636, 46.450032952475)
 (6.085649616931, 46.450032952475)
 (6.085649616931, 46.44533244618)
 (6.085649616931, 46.440631939885)
 (6.085649616931, 46.435931433589)
 (6.080949110636, 46.435931433589)
 (6.080949110636, 46.431230927294)
 (6.076248604341, 46.431230927294)
 (6.071548098045, 46.431230927294)
 (6.071548098045, 46.426530420999)
 (6.071548098045, 46.421829914704)
 (6.06684759175, 46.421829914704)
 (6.06684759175, 46.417129408408)
 (6.071548098045, 46.417129408408)
 (6.071548098045, 46.412428902113)
 (6.076248604341, 46.412428902113)
 (6.080949110636, 46.412428902113)
 (6.085649616931, 46.412428902113)
 (6.085649616931, 46.407728395818)
 (6.090350123226, 46.407728395818)
 (6.095050629522, 46.407728395818)
 (6.099751135817, 46.407728395818)
 (6.099751135817, 46.403027889523)
 (6.104451642112, 46.403027889523)
 (6.104451642112, 46.398327383228)
 (6.109152148407, 46.398327383228)
 (6.113852654702, 46.398327383228)
 (6.118553160998, 46.398327383228)
 (6.118553160998, 46.393626876932)
 (6.123253667293, 46.393626876932)
 (6.127954173588, 46.393626876932)
 (6.127954173588, 46.388926370637)
 (6.132654679883, 46.388926370637)
 (6.137355186178, 46.388926370637)
 (6.137355186178, 46.384225864342)
 (6.142055692474, 46.384225864342)
 (6.146756198769, 46.384225864342)
 (6.146756198769, 46.379525358047)
 (6.151456705064, 46.379525358047)
 (6.156157211359, 46.379525358047)
 (6.160857717655, 46.379525358047)
 (6.160857717655, 46.374824851752)
 (6.16555822395, 46.374824851752)
 (6.16555822395, 46.370124345456)
 (6.170258730245, 46.370124345456)
 (6.170258730245, 46.365423839161)
 (6.16555822395, 46.365423839161)
 (6.16555822395, 46.360723332866)
 (6.160857717655, 46.360723332866)
 (6.160857717655, 46.356022826571)
 (6.160857717655, 46.351322320275)
 (6.156157211359, 46.351322320275)
 (6.156157211359, 46.34662181398)
 (6.151456705064, 46.34662181398)
 (6.146756198769, 46.34662181398)
 (6.146756198769, 46.341921307685)
 (6.142055692474, 46.341921307685)
 (6.142055692474, 46.33722080139)
 (6.137355186178, 46.33722080139)
 (6.137355186178, 46.332520295095)
 (6.137355186178, 46.327819788799)
 (6.132654679883, 46.327819788799)
 (6.132654679883, 46.323119282504)
 (6.127954173588, 46.323119282504)
 (6.127954173588, 46.318418776209)
 (6.123253667293, 46.318418776209)
 (6.123253667293, 46.313718269914)
 (6.118553160998, 46.313718269914)
 (6.118553160998, 46.309017763619)
 (6.118553160998, 46.304317257323)
 (6.123253667293, 46.304317257323)
 (6.123253667293, 46.299616751028)
 (6.118553160998, 46.299616751028)
 (6.118553160998, 46.294916244733)
 (6.113852654702, 46.294916244733)
 (6.113852654702, 46.290215738438)
 (6.109152148407, 46.290215738438)
 (6.109152148407, 46.285515232142)
 (6.104451642112, 46.285515232142)
 (6.104451642112, 46.280814725847)
 (6.104451642112, 46.276114219552)
 (6.109152148407, 46.276114219552)
 (6.109152148407, 46.271413713257)
 (6.113852654702, 46.271413713257)
 (6.113852654702, 46.266713206962)
 (6.118553160998, 46.266713206962)
 (6.118553160998, 46.262012700666)
 (6.123253667293, 46.262012700666)
 (6.123253667293, 46.257312194371)
 (6.123253667293, 46.252611688076)
 (6.123253667293, 46.247911181781)
 (6.118553160998, 46.247911181781)
 (6.118553160998, 46.243210675486)
 (6.113852654702, 46.243210675486)
 (6.109152148407, 46.243210675486)
 (6.109152148407, 46.23851016919)
 (6.104451642112, 46.23851016919)
 (6.099751135817, 46.23851016919)
 (6.099751135817, 46.243210675486)
 (6.095050629522, 46.243210675486)
 (6.090350123226, 46.243210675486)
 (6.090350123226, 46.247911181781)
 (6.085649616931, 46.247911181781)
 (6.080949110636, 46.247911181781)
 (6.080949110636, 46.243210675486)
 (6.076248604341, 46.243210675486)
 (6.071548098045, 46.243210675486)
 (6.071548098045, 46.23851016919)
 (6.06684759175, 46.23851016919)
 (6.06684759175, 46.243210675486)
 (6.062147085455, 46.243210675486)
 (6.05744657916, 46.243210675486)
 (6.05744657916, 46.23851016919)
 (6.052746072865, 46.23851016919)
 (6.052746072865, 46.233809662895)
 (6.048045566569, 46.233809662895)
 (6.043345060274, 46.233809662895)
 (6.038644553979, 46.233809662895)
 (6.038644553979, 46.23851016919)
 (6.033944047684, 46.23851016919)
 (6.029243541389, 46.23851016919)
 (6.029243541389, 46.233809662895)
 (6.024543035093, 46.233809662895)
 (6.019842528798, 46.233809662895)
 (6.015142022503, 46.233809662895)
 (6.015142022503, 46.2291091566)
 (6.010441516208, 46.2291091566)
 (6.005741009912, 46.2291091566)
 (6.005741009912, 46.224408650305)
 (6.001040503617, 46.224408650305)
 (5.996339997322, 46.224408650305)
 (5.991639491027, 46.224408650305)
 (5.991639491027, 46.219708144009)
 (5.991639491027, 46.215007637714)
 (5.986938984732, 46.215007637714)
 (5.982238478436, 46.215007637714)
 (5.977537972141, 46.215007637714)
 (5.972837465846, 46.215007637714)
 (5.972837465846, 46.210307131419)
 (5.972837465846, 46.205606625124)
 (5.972837465846, 46.200906118829)
 (5.968136959551, 46.200906118829)
 (5.968136959551, 46.196205612533)
 (5.972837465846, 46.196205612533)
 (5.972837465846, 46.191505106238)
 (5.977537972141, 46.191505106238)
 (5.982238478436, 46.191505106238)
 (5.986938984732, 46.191505106238)
 (5.986938984732, 46.186804599943)
 (5.991639491027, 46.186804599943)
 (5.991639491027, 46.182104093648)
 (5.991639491027, 46.177403587353)
 (5.991639491027, 46.177403587352)
 (5.991639491027, 46.172703081057)
 (5.986938984732, 46.172703081057)
 (5.982238478436, 46.172703081057)
 (5.982238478436, 46.168002574762)
 (5.977537972141, 46.168002574762)
 (5.977537972141, 46.163302068467)
 (5.977537972141, 46.158601562172)
 (5.972837465846, 46.158601562172)
 (5.972837465846, 46.153901055876)
 (5.968136959551, 46.153901055876)
 (5.968136959551, 46.149200549581)
 (5.968136959551, 46.144500043286)
 (5.963436453256, 46.144500043286)
 (5.963436453256, 46.139799536991)
 (5.963436453256, 46.135099030696)
 (5.95873594696, 46.135099030696)
 (5.95873594696, 46.1303985244)
 (5.95873594696, 46.125698018105)
 (5.963436453256, 46.125698018105)
 (5.963436453256, 46.1303985244)
 (5.968136959551, 46.1303985244)
 (5.972837465846, 46.1303985244)
 (5.977537972141, 46.1303985244)
 (5.977537972141, 46.135099030696)
 (5.982238478436, 46.135099030696)
 (5.982238478436, 46.139799536991)
 (5.982238478436, 46.144500043286)
 (5.986938984732, 46.144500043286)
 (5.991639491027, 46.144500043286)
 (5.996339997322, 46.144500043286)
 (6.001040503617, 46.144500043286)
 (6.005741009912, 46.144500043286)
 (6.010441516208, 46.144500043286)
 (6.015142022503, 46.144500043286)
 (6.019842528798, 46.144500043286)
 (6.024543035093, 46.144500043286)
 (6.024543035093, 46.139799536991)
 (6.029243541389, 46.139799536991)
 (6.033944047684, 46.139799536991)
 (6.038644553979, 46.139799536991)
 (6.043345060274, 46.139799536991)
 (6.048045566569, 46.139799536991)
 (6.048045566569, 46.144500043286)
 (6.048045566569, 46.149200549581)
 (6.052746072865, 46.149200549581)
 (6.05744657916, 46.149200549581)
 (6.062147085455, 46.149200549581)
 (6.06684759175, 46.149200549581)
 (6.071548098045, 46.149200549581)
 (6.076248604341, 46.149200549581)
 (6.080949110636, 46.149200549581)
 (6.085649616931, 46.149200549581)
 (6.090350123226, 46.149200549581)
 (6.095050629522, 46.149200549581)
 (6.099751135817, 46.149200549581)
 (6.099751135817, 46.144500043286)
 (6.104451642112, 46.144500043286)
 (6.109152148407, 46.144500043286)
 (6.113852654702, 46.144500043286)
 (6.118553160998, 46.144500043286)
 (6.118553160998, 46.139799536991)
 (6.123253667293, 46.139799536991)
 (6.127954173588, 46.139799536991)
 (6.132654679883, 46.139799536991)
 (6.137355186178, 46.139799536991)
 (6.137355186178, 46.144500043286)
 (6.142055692474, 46.144500043286)
 (6.146756198769, 46.144500043286)
 (6.146756198769, 46.149200549581)
 (6.151456705064, 46.149200549581)
 (6.156157211359, 46.149200549581)
 (6.156157211359, 46.153901055876)
 (6.160857717655, 46.153901055876)
 (6.16555822395, 46.153901055876)
 (6.170258730245, 46.153901055876)
 (6.170258730245, 46.158601562172)
 (6.17495923654, 46.158601562172)
 (6.179659742835, 46.158601562172)
 (6.179659742835, 46.163302068467)
 (6.184360249131, 46.163302068467)
 (6.189060755426, 46.163302068467)
 (6.189060755426, 46.168002574762)
 (6.189060755426, 46.172703081057)
 (6.184360249131, 46.172703081057)
 (6.184360249131, 46.177403587352)
 (6.189060755426, 46.177403587352)
 (6.189060755426, 46.182104093648)
 (6.193761261721, 46.182104093648)
 (6.198461768016, 46.182104093648)
 (6.198461768016, 46.186804599943)
 (6.203162274311, 46.186804599943)
 (6.203162274311, 46.191505106238)
 (6.207862780607, 46.191505106238)
 (6.212563286902, 46.191505106238)
 (6.212563286902, 46.196205612533)
 (6.217263793197, 46.196205612533)
 (6.217263793197, 46.200906118829)
 (6.221964299492, 46.200906118829)
 (6.226664805788, 46.200906118829)
 (6.226664805788, 46.205606625124)
 (6.231365312083, 46.205606625124)
 (6.236065818378, 46.205606625124)
 (6.240766324673, 46.205606625124)
 (6.245466830968, 46.205606625124)
 (6.250167337264, 46.205606625124)
 (6.254867843559, 46.205606625124)
 (6.254867843559, 46.210307131419)
 (6.259568349854, 46.210307131419)
 (6.264268856149, 46.210307131419)
 (6.268969362444, 46.210307131419)
 (6.268969362444, 46.215007637714)
 (6.27366986874, 46.215007637714)
 (6.278370375035, 46.215007637714)
 (6.28307088133, 46.215007637714)
 (6.28307088133, 46.219708144009)
 (6.287771387625, 46.219708144009)
 (6.292471893921, 46.219708144009)
 (6.292471893921, 46.224408650305)
 (6.297172400216, 46.224408650305)
 (6.297172400216, 46.2291091566)
 (6.301872906511, 46.2291091566)
 (6.301872906511, 46.233809662895)
 (6.306573412806, 46.233809662895)
 (6.306573412806, 46.23851016919)
 (6.306573412806, 46.243210675486)
 (6.311273919101, 46.243210675486)
 (6.311273919101, 46.247911181781)
 (6.311273919101, 46.252611688076)
 (6.306573412806, 46.252611688076)
 (6.301872906511, 46.252611688076)
 (6.301872906511, 46.257312194371)
 (6.297172400216, 46.257312194371)
 (6.297172400216, 46.262012700666)
 (6.297172400216, 46.266713206962)
 (6.292471893921, 46.266713206962)
 (6.292471893921, 46.262012700666)
 (6.287771387625, 46.262012700666)
 (6.287771387625, 46.257312194371)
 (6.28307088133, 46.257312194371)
 (6.28307088133, 46.252611688076)
 (6.278370375035, 46.252611688076)
 (6.27366986874, 46.252611688076)
 (6.268969362444, 46.252611688076)
 (6.268969362444, 46.247911181781)
 (6.264268856149, 46.247911181781)
 (6.264268856149, 46.252611688076)
 (6.259568349854, 46.252611688076)
 (6.259568349854, 46.257312194371)
 (6.254867843559, 46.257312194371)
 (6.254867843559, 46.262012700666)
 (6.250167337264, 46.262012700666)
 (6.250167337264, 46.266713206962)
 (6.245466830968, 46.266713206962)
 (6.245466830968, 46.271413713257)
 (6.240766324673, 46.271413713257)
 (6.240766324673, 46.276114219552)
 (6.240766324673, 46.280814725847)
 (6.240766324673, 46.285515232142)
 (6.245466830968, 46.285515232142)
 (6.250167337264, 46.285515232142)
 (6.250167337264, 46.290215738438)
 (6.250167337264, 46.294916244733)
 (6.250167337264, 46.299616751028)
 (6.250167337264, 46.304317257323)
 (6.245466830968, 46.304317257323)
 (6.240766324673, 46.304317257323)
 (6.240766324673, 46.309017763619)
 (6.236065818378, 46.309017763619)
 (6.231365312083, 46.309017763619)
 (6.226664805788, 46.309017763619)
 (6.226664805788, 46.313718269914)
 (6.221964299492, 46.313718269914)
 (6.221964299492, 46.318418776209)
 (6.226664805788, 46.318418776209)
 (6.226664805788, 46.323119282504)
 (6.231365312083, 46.323119282504)
 (6.231365312083, 46.327819788799)
 (6.236065818378, 46.327819788799)
 (6.236065818378, 46.332520295095)
 (6.236065818378, 46.33722080139)
 (6.240766324673, 46.33722080139)
 (6.240766324673, 46.341921307685)
 (6.245466830968, 46.341921307685)
 (6.245466830968, 46.34662181398)
 (6.250167337264, 46.34662181398)
 (6.250167337264, 46.351322320275)
 (6.250167337264, 46.356022826571)
 (6.254867843559, 46.356022826571)
 (6.254867843559, 46.360723332866)
 (6.259568349854, 46.360723332866)
 (6.264268856149, 46.360723332866)
 (6.264268856149, 46.365423839161)
 (6.268969362444, 46.365423839161)
 (6.268969362444, 46.370124345456)
 (6.27366986874, 46.370124345456)
 (6.278370375035, 46.370124345456)
 (6.278370375035, 46.374824851752)
 (6.28307088133, 46.374824851752)
 (6.287771387625, 46.374824851752)
 (6.287771387625, 46.379525358047)
 (6.292471893921, 46.379525358047)
 (6.292471893921, 46.384225864342)
 (6.297172400216, 46.384225864342)
 (6.301872906511, 46.384225864342)
 (6.301872906511, 46.388926370637)
 (6.306573412806, 46.388926370637)
 (6.311273919101, 46.388926370637)
 (6.311273919101, 46.393626876932)
 (6.315974425397, 46.393626876932)
 (6.315974425397, 46.398327383228)
 (6.320674931692, 46.398327383228)
 (6.325375437987, 46.398327383228)
 (6.325375437987, 46.403027889523)
 (6.330075944282, 46.403027889523)
 (6.334776450578, 46.403027889523)
 (6.339476956873, 46.403027889523)
 (6.344177463168, 46.403027889523)
 (6.344177463168, 46.407728395818)
 (6.348877969463, 46.407728395818)
 (6.353578475758, 46.407728395818)
 (6.358278982054, 46.407728395818)
 (6.362979488349, 46.407728395818)
 (6.367679994644, 46.407728395818)
 (6.372380500939, 46.407728395818)
 (6.377081007234, 46.407728395818)
 (6.38178151353, 46.407728395818)
 (6.38178151353, 46.412428902113)
 (6.386482019825, 46.412428902113)
 (6.39118252612, 46.412428902113)
 (6.395883032415, 46.412428902113)
 (6.400583538711, 46.412428902113)
 (6.405284045006, 46.412428902113)
 (6.409984551301, 46.412428902113)
 (6.414685057596, 46.412428902113)
 (6.419385563891, 46.412428902113)
 (6.419385563891, 46.417129408408)
 (6.424086070187, 46.417129408408)
 (6.428786576482, 46.417129408408)
 (6.433487082777, 46.417129408408)
 (6.433487082777, 46.421829914704)
 (6.438187589072, 46.421829914704)
 (6.442888095367, 46.421829914704)
 (6.442888095367, 46.426530420999)
 (6.447588601663, 46.426530420999)
 (6.452289107958, 46.426530420999)
 (6.456989614253, 46.426530420999)
 (6.456989614253, 46.431230927294)
 (6.461690120548, 46.431230927294)
 (6.466390626844, 46.431230927294)
 (6.466390626844, 46.435931433589)
 (6.471091133139, 46.435931433589)
 (6.475791639434, 46.435931433589)
 (6.480492145729, 46.435931433589)
 (6.480492145729, 46.440631939885)
 (6.485192652024, 46.440631939885)
 (6.48989315832, 46.440631939885)
 (6.48989315832, 46.44533244618)
 (6.494593664615, 46.44533244618)
 (6.49929417091, 46.44533244618)
 (6.49929417091, 46.450032952475)
 (6.503994677205, 46.450032952475)
 (6.5086951835, 46.450032952475)
 (6.513395689796, 46.450032952475)
 (6.513395689796, 46.45473345877)
 (6.518096196091, 46.45473345877)
 (6.522796702386, 46.45473345877)
 (6.527497208681, 46.45473345877)
 (6.532197714977, 46.45473345877)
 (6.536898221272, 46.45473345877)
 (6.541598727567, 46.45473345877)
 (6.546299233862, 46.45473345877)
 (6.550999740157, 46.45473345877)
 (6.555700246453, 46.45473345877)
 (6.560400752748, 46.45473345877)
 (6.565101259043, 46.45473345877)
 (6.569801765338, 46.45473345877)
 (6.574502271633, 46.45473345877)
 (6.579202777929, 46.45473345877)
 (6.583903284224, 46.45473345877)
 (6.588603790519, 46.45473345877)
 (6.593304296814, 46.45473345877)
 (6.59800480311, 46.45473345877)
 (6.602705309405, 46.45473345877)
 (6.6074058157, 46.45473345877)
 (6.612106321995, 46.45473345877)
 (6.61680682829, 46.45473345877)
 (6.621507334586, 46.45473345877)
 (6.626207840881, 46.45473345877)
 (6.630908347176, 46.45473345877)
 (6.635608853471, 46.45473345877)
 (6.640309359767, 46.45473345877)
 (6.645009866062, 46.45473345877)
 (6.649710372357, 46.45473345877)
 (6.654410878652, 46.45473345877)
 (6.659111384947, 46.45473345877)
 (6.663811891243, 46.45473345877)
 (6.668512397538, 46.45473345877)
 (6.673212903833, 46.45473345877)
 (6.677913410128, 46.45473345877)
 (6.677913410128, 46.450032952475)
 (6.682613916423, 46.450032952475)
 (6.687314422719, 46.450032952475)
 (6.692014929014, 46.450032952475)
 (6.696715435309, 46.450032952475)
 (6.701415941604, 46.450032952475)
 (6.7061164479, 46.450032952475)
 (6.7061164479, 46.44533244618)
 (6.710816954195, 46.44533244618)
 (6.71551746049, 46.44533244618)
 (6.720217966785, 46.44533244618)
 (6.72491847308, 46.44533244618)
 (6.729618979376, 46.44533244618)
 (6.734319485671, 46.44533244618)
 (6.734319485671, 46.440631939885)
 (6.739019991966, 46.440631939885)
 (6.743720498261, 46.440631939885)
 (6.748421004556, 46.440631939885)
 (6.753121510852, 46.440631939885)
 (6.757822017147, 46.440631939885)
 (6.762522523442, 46.440631939885)
 (6.762522523442, 46.435931433589)
 (6.767223029737, 46.435931433589)
 (6.771923536033, 46.435931433589)
 (6.776624042328, 46.435931433589)
 (6.781324548623, 46.435931433589)
 (6.786025054918, 46.435931433589)
 (6.790725561213, 46.435931433589)
 (6.790725561213, 46.431230927294)
 (6.795426067509, 46.431230927294)
 (6.800126573804, 46.431230927294)
 (6.804827080099, 46.431230927294)
 (6.809527586394, 46.431230927294)
 (6.814228092689, 46.431230927294)
 (6.818928598985, 46.431230927294)
 (6.818928598985, 46.426530420999)
 (6.818928598985, 46.421829914704)
 (6.814228092689, 46.421829914704)
 (6.814228092689, 46.417129408408)
 (6.814228092689, 46.412428902113)
 (6.809527586394, 46.412428902113)
 (6.809527586394, 46.407728395818)
 (6.809527586394, 46.403027889523)
 (6.804827080099, 46.403027889523)
 (6.804827080099, 46.398327383228)
 (6.804827080099, 46.393626876932)
 (6.804827080099, 46.388926370637)
 (6.804827080099, 46.384225864342)
 (6.804827080099, 46.379525358047)
 (6.800126573804, 46.379525358047)
 (6.800126573804, 46.374824851752)
 (6.795426067509, 46.374824851752)
 (6.795426067509, 46.370124345456)
 (6.790725561213, 46.370124345456)
 (6.790725561213, 46.365423839161)
 (6.786025054918, 46.365423839161)
 (6.781324548623, 46.365423839161)
 (6.776624042328, 46.365423839161)
 (6.776624042328, 46.360723332866)
 (6.771923536033, 46.360723332866)
 (6.771923536033, 46.356022826571)
 (6.771923536033, 46.351322320275)
 (6.771923536033, 46.34662181398)
 (6.776624042328, 46.34662181398)
 (6.781324548623, 46.34662181398)
 (6.781324548623, 46.341921307685)
 (6.781324548623, 46.33722080139)
 (6.786025054918, 46.33722080139)
 (6.786025054918, 46.332520295095)
 (6.790725561213, 46.332520295095)
 (6.795426067509, 46.332520295095)
 (6.800126573804, 46.332520295095)
 (6.800126573804, 46.327819788799)
 (6.800126573804, 46.323119282504)
 (6.800126573804, 46.318418776209)
 (6.804827080099, 46.318418776209)
 (6.809527586394, 46.318418776209)
 (6.814228092689, 46.318418776209)
 (6.814228092689, 46.313718269914)
 (6.818928598985, 46.313718269914)
 (6.82362910528, 46.313718269914)
 (6.82362910528, 46.309017763619)
 (6.828329611575, 46.309017763619)
 (6.828329611575, 46.304317257323)
 (6.828329611575, 46.299616751028)
 (6.83303011787, 46.299616751028)
 (6.837730624166, 46.299616751028)
 (6.837730624166, 46.294916244733)
 (6.842431130461, 46.294916244733)
 (6.847131636756, 46.294916244733)
 (6.847131636756, 46.290215738438)
 (6.851832143051, 46.290215738438)
 (6.851832143051, 46.294916244733)
 (6.856532649346, 46.294916244733)
 (6.856532649346, 46.290215738438)
 (6.861233155642, 46.290215738438)
 (6.861233155642, 46.285515232142)
 (6.861233155642, 46.280814725847)
 (6.861233155642, 46.276114219552)
 (6.856532649346, 46.276114219552)
 (6.856532649346, 46.271413713257)
 (6.861233155642, 46.271413713257)
 (6.861233155642, 46.266713206962)
 (6.856532649346, 46.266713206962)
 (6.856532649346, 46.262012700666)
 (6.856532649346, 46.257312194371)
 (6.856532649346, 46.252611688076)
 (6.851832143051, 46.252611688076)
 (6.847131636756, 46.252611688076)
 (6.847131636756, 46.247911181781)
 (6.842431130461, 46.247911181781)
 (6.842431130461, 46.243210675486)
 (6.837730624166, 46.243210675486)
 (6.837730624166, 46.23851016919)
 (6.83303011787, 46.23851016919)
 (6.828329611575, 46.23851016919)
 (6.828329611575, 46.233809662895)
 (6.82362910528, 46.233809662895)
 (6.82362910528, 46.2291091566)
 (6.818928598985, 46.2291091566)
 (6.818928598985, 46.224408650305)
 (6.818928598985, 46.219708144009)
 (6.814228092689, 46.219708144009)
 (6.814228092689, 46.215007637714)
 (6.809527586394, 46.215007637714)
 (6.809527586394, 46.210307131419)
 (6.804827080099, 46.210307131419)
 (6.804827080099, 46.205606625124)
 (6.804827080099, 46.200906118829)
 (6.804827080099, 46.196205612533)
 (6.809527586394, 46.196205612533)
 (6.809527586394, 46.191505106238)
 (6.809527586394, 46.186804599943)
 (6.814228092689, 46.186804599943)
 (6.814228092689, 46.182104093648)
 (6.809527586394, 46.182104093648)
 (6.809527586394, 46.177403587353)
 (6.809527586394, 46.177403587352)
 (6.809527586394, 46.172703081057)
 (6.804827080099, 46.172703081057)
 (6.804827080099, 46.168002574762)
 (6.800126573804, 46.168002574762)
 (6.800126573804, 46.163302068467)
 (6.795426067509, 46.163302068467)
 (6.795426067509, 46.158601562172)
 (6.790725561213, 46.158601562172)
 (6.790725561213, 46.153901055876)
 (6.790725561213, 46.149200549581)
 (6.795426067509, 46.149200549581)
 (6.795426067509, 46.144500043286)
 (6.795426067509, 46.139799536991)
 (6.800126573804, 46.139799536991)
 (6.800126573804, 46.135099030696)
 (6.804827080099, 46.135099030696)
 (6.809527586394, 46.135099030696)
 (6.809527586394, 46.1303985244)
 (6.814228092689, 46.1303985244)
 (6.818928598985, 46.1303985244)
 (6.82362910528, 46.1303985244)
 (6.828329611575, 46.1303985244)
 (6.83303011787, 46.1303985244)
 (6.83303011787, 46.135099030696)
 (6.837730624166, 46.135099030696)
 (6.842431130461, 46.135099030696)
 (6.842431130461, 46.1303985244)
 (6.847131636756, 46.1303985244)
 (6.847131636756, 46.125698018105)
 (6.851832143051, 46.125698018105)
 (6.856532649346, 46.125698018105)
 (6.861233155642, 46.125698018105)
 (6.865933661937, 46.125698018105)
 (6.870634168232, 46.125698018105)
 (6.875334674527, 46.125698018105)
 (6.880035180822, 46.125698018105)
 (6.884735687118, 46.125698018105)
 (6.889436193413, 46.125698018105)
 (6.894136699708, 46.125698018105)
 (6.898837206003, 46.125698018105)
 (6.898837206003, 46.12099751181)
 (6.898837206003, 46.116297005515)
 (6.894136699708, 46.116297005515)
 (6.894136699708, 46.111596499219)
 (6.894136699708, 46.106895992924)
 (6.889436193413, 46.106895992924)
 (6.889436193413, 46.102195486629)
 (6.889436193413, 46.097494980334)
 (6.884735687118, 46.097494980334)
 (6.884735687118, 46.092794474039)
 (6.884735687118, 46.088093967743)
 (6.889436193413, 46.088093967743)
 (6.889436193413, 46.083393461448)
 (6.889436193413, 46.078692955153)
 (6.889436193413, 46.073992448858)
 (6.884735687118, 46.073992448858)
 (6.884735687118, 46.069291942563)
 (6.880035180822, 46.069291942563)
 (6.880035180822, 46.064591436267)
 (6.875334674527, 46.064591436267)
 (6.875334674527, 46.059890929972)
 (6.875334674527, 46.055190423677)
 (6.870634168232, 46.055190423677)
 (6.870634168232, 46.050489917382)
 (6.875334674527, 46.050489917382)
 (6.875334674527, 46.045789411086)
 (6.880035180822, 46.045789411086)
 (6.884735687118, 46.045789411086)
 (6.884735687118, 46.041088904791)
 (6.889436193413, 46.041088904791)
 (6.889436193413, 46.045789411086)
 (6.894136699708, 46.045789411086)
 (6.894136699708, 46.050489917382)
 (6.898837206003, 46.050489917382)
 (6.903537712299, 46.050489917382)
 (6.908238218594, 46.050489917382)
 (6.912938724889, 46.050489917382)
 (6.912938724889, 46.055190423677)
 (6.917639231184, 46.055190423677)
 (6.917639231184, 46.059890929972)
 (6.922339737479, 46.059890929972)
 (6.922339737479, 46.064591436267)
 (6.927040243775, 46.064591436267)
 (6.93174075007, 46.064591436267)
 (6.936441256365, 46.064591436267)
 (6.936441256365, 46.059890929972)
 (6.936441256365, 46.055190423677)
 (6.94114176266, 46.055190423677)
 (6.94114176266, 46.050489917382)
 (6.945842268956, 46.050489917382)
 (6.950542775251, 46.050489917382)
 (6.950542775251, 46.045789411086)
 (6.955243281546, 46.045789411086)
 (6.955243281546, 46.041088904791)
 (6.955243281546, 46.036388398496)
 (6.959943787841, 46.036388398496)
 (6.959943787841, 46.031687892201)
 (6.964644294136, 46.031687892201)
 (6.969344800432, 46.031687892201)
 (6.969344800432, 46.026987385906)
 (6.974045306727, 46.026987385906)
 (6.974045306727, 46.02228687961)
 (6.978745813022, 46.02228687961)
 (6.978745813022, 46.017586373315)
 (6.983446319317, 46.017586373315)
 (6.983446319317, 46.01288586702)
 (6.983446319317, 46.008185360725)
 (6.983446319317, 46.00348485443)
 (6.988146825612, 46.00348485443)
 (6.992847331908, 46.00348485443)
 (6.992847331908, 45.998784348134)
 (6.997547838203, 45.998784348134)
 (7.002248344498, 45.998784348134)
 (7.006948850793, 45.998784348134)
 (7.011649357089, 45.998784348134)
 (7.011649357089, 45.994083841839)
 (7.011649357089, 45.989383335544)
 (7.011649357089, 45.984682829249)
 (7.016349863384, 45.984682829249)
 (7.021050369679, 45.984682829249)
 (7.021050369679, 45.979982322953)
 (7.021050369679, 45.975281816658)
 (7.016349863384, 45.975281816658)
 (7.011649357089, 45.975281816658)
 (7.011649357089, 45.970581310363)
 (7.011649357089, 45.965880804068)
 (7.016349863384, 45.965880804068)
 (7.016349863384, 45.961180297773)
 (7.021050369679, 45.961180297773)
 (7.025750875974, 45.961180297773)
 (7.025750875974, 45.956479791477)
 (7.030451382269, 45.956479791477)
 (7.035151888565, 45.956479791477)
 (7.035151888565, 45.951779285182)
 (7.035151888565, 45.947078778887)
 (7.035151888565, 45.942378272592)
 (7.035151888565, 45.937677766297)
 (7.03985239486, 45.937677766297)
 (7.03985239486, 45.932977260001)
 (7.03985239486, 45.928276753706)
 (7.044552901155, 45.928276753706)
 (7.044552901155, 45.923576247411)
 (7.044552901155, 45.918875741116)
 (7.04925340745, 45.918875741116)
 (7.04925340745, 45.91417523482)
 (7.053953913745, 45.91417523482)
 (7.058654420041, 45.91417523482)
 (7.063354926336, 45.91417523482)
 (7.063354926336, 45.909474728525)
 (7.063354926336, 45.90477422223)
 (7.063354926336, 45.900073715935)
 (7.068055432631, 45.900073715935)
 (7.068055432631, 45.89537320964)
 (7.072755938926, 45.89537320964)
 (7.077456445222, 45.89537320964)
 (7.077456445222, 45.890672703344)
 (7.077456445222, 45.885972197049)
 (7.082156951517, 45.885972197049)
 (7.082156951517, 45.881271690754)
 (7.086857457812, 45.881271690754)
 (7.091557964107, 45.881271690754)
 (7.091557964107, 45.876571184459)
 (7.091557964107, 45.871870678164)
 (7.096258470402, 45.871870678164)
 (7.096258470402, 45.867170171868)
 (7.096258470402, 45.862469665573)
 (7.100958976698, 45.862469665573)
 (7.100958976698, 45.857769159278)
 (7.105659482993, 45.857769159278)
 (7.110359989288, 45.857769159278)
 (7.115060495583, 45.857769159278)
 (7.119761001878, 45.857769159278)
 (7.119761001878, 45.862469665573)
 (7.124461508174, 45.862469665573)
 (7.129162014469, 45.862469665573)
 (7.129162014469, 45.867170171868)
 (7.133862520764, 45.867170171868)
 (7.133862520764, 45.871870678164)

Here is the boundary.

boundary_nodes, points = convert_boundary_points_to_indices(boundary_points)
rng = StableRNG(789)
tri = triangulate(points; boundary_nodes, rng)
fig, ax, sc = triplot(tri)
fig

Now let's refine.

A = get_area(tri)
refine!(tri; min_angle=30.0, max_area=0.001A, rng)
Delaunay Triangulation.
   Number of vertices: 14165
   Number of triangles: 23178
   Number of edges: 37342
   Has boundary nodes: true
   Has ghost triangles: true
   Curve-bounded: false
   Weighted: false
   Constrained: true
fig, ax, sc = triplot(tri)
fig

We see that the triangulation is now adequately refined. There are still triangles near the boundaries whose minimum angle is less than 30 degrees, though, because of the angles that boundary edges meet at in some places. Most of the triangles will satisfy the constraint, though, as we show below.

stats = statistics(tri)
angles = first.(get_all_stat(stats, :angles)) # the first is the smallest
fig, ax, sc = scatter(rad2deg.(angles))
hlines!(ax, [30.0], color = :red, linewidth = 4)
fig

As we can see, the vast majority of the triangles satisfy the constraint, but there are still some that do not. Here is another set of results with a lower minimum angle constraint.

boundary_nodes, points = convert_boundary_points_to_indices(boundary_points)
rng = StableRNG(789)
tri = triangulate(points; boundary_nodes, rng)
refine!(tri; min_angle=18.73, max_area=0.001A, rng)
fig = Figure(fontsize = 43)
ax = Axis(fig[1, 1], width = 600, height = 400)
triplot!(tri)
ax = Axis(fig[1, 2], width = 600, height = 400)
stats = statistics(tri)
angles = first.(get_all_stat(stats, :angles)) # the first is the smallest
scatter!(ax, rad2deg.(angles))
hlines!(ax, [18.73], color = :red, linewidth = 4)
resize_to_layout!(fig)
fig

In this case, all the triangles satisfy the constraint, of course at the expense of some other triangles having lesser quality.

Just the code

An uncommented version of this example is given below. You can view the source code for this file here.

using DelaunayTriangulation
using CairoMakie
using StableRNGs

rng = StableRNG(123)
x = rand(rng, 50)
y = rand(rng, 50)
points = tuple.(x, y)
tri = triangulate(points; rng)
orig_tri = deepcopy(tri)
A = get_area(tri)
refine!(tri; min_angle=30.0, max_area=0.01A, rng)

statistics(tri)

fig, ax, sc = triplot(orig_tri, axis=(title="Pre-refinement",))
ax = Axis(fig[1, 2], title="Post-refinement")
triplot!(ax, tri)
fig

refine!(tri; min_angle=30.0, max_area=0.001A, rng) # 0.1% instead of 1%
fig, ax, sc = triplot(tri)
fig

test_tri = deepcopy(tri)
refine!(test_tri; min_angle=35.0, max_area=0.001A, max_points = 5_000, rng) # 20_000 so that it doesn't just keep going
statistics(test_tri)

fig, ax, sc = triplot(test_tri)
fig

stats = statistics(tri)
fig = Figure(fontsize=33)
areas = get_all_stat(stats, :area) ./ A
angles = first.(get_all_stat(stats, :angles)) # the first is the smallest
ax = Axis(fig[1, 1], xlabel="A/A(Ω)", ylabel="Count", title="Area histogram", width=400, height=400, titlealign=:left)
hist!(ax, areas, bins=0:0.0001:0.0005)
ax = Axis(fig[1, 2], xlabel="θₘᵢₙ", ylabel="Count", title="Angle histogram", width=400, height=400, titlealign=:left)
hist!(ax, rad2deg.(angles), bins=20:2:60)
vlines!(ax, [30.0], color=:red)
resize_to_layout!(fig)
fig

n = 100
θ = LinRange(0, 2π, n + 1)
θ = [θ[1:n]; 0]
rev_θ = reverse(θ) # to go from ccw to cw
r₁ = 10.0
r₂ = 5.0
r₃ = 2.5
outer_x, outer_y = r₁ * cos.(θ), r₁ * sin.(θ)
inner_x, inner_y = r₂ * cos.(rev_θ), r₂ * sin.(rev_θ)
innermost_x, innermost_y = r₃ * cos.(θ), r₃ * sin.(θ)
x = [[outer_x], [inner_x], [innermost_x]]
y = [[outer_y], [inner_y], [innermost_y]]
boundary_nodes, points = convert_boundary_points_to_indices(x, y)
rng = StableRNG(456)
tri = triangulate(points; boundary_nodes, rng)
fig, ax, sc = triplot(tri)
fig

A = get_area(tri)
refine!(tri; min_angle=27.3, max_area=0.01A, rng)
fig, ax, sc = triplot(tri)
fig

refine!(tri; min_angle=33.9, max_area=0.001A, rng)
fig, ax, sc = triplot(tri)
fig

outer_area = π * (r₁^2 - r₂^2)
inner_area = π * r₃^2
function in_inner(p, q, r)
    px, py = getxy(p)
    qx, qy = getxy(q)
    rx, ry = getxy(r)
    cx, cy = (px + qx + rx) / 3, (py + qy + ry) / 3
    rad2 = cx^2 + cy^2
    return rad2 ≤ r₃^2
end
function area_constraint(_tri, T)
    i, j, k = triangle_vertices(T)
    p, q, r = get_point(_tri, i, j, k)
    A = DelaunayTriangulation.triangle_area(p, q, r)
    return in_inner(p, q, r) ? (A ≥ 0.005inner_area) : (A ≥ 0.001outer_area)
end

boundary_nodes, points = convert_boundary_points_to_indices(x, y)
rng = StableRNG(456)
tri = triangulate(points; boundary_nodes, rng)
refine!(tri; min_angle=30.0, custom_constraint=area_constraint, rng)
fig, ax, sc = triplot(tri)
fig

function angle_constraint(_tri, T)
    i, j, k = triangle_vertices(T)
    p, q, r = get_point(_tri, i, j, k)
    θ = rad2deg(minimum(DelaunayTriangulation.triangle_angles(p, q, r)))
    return in_inner(p, q, r) ? (θ ≤ 33.9) : (θ ≤ 20.0)
end
function custom_constraint(_tri, T)
    return area_constraint(_tri, T) || angle_constraint(_tri, T)
end
boundary_nodes, points = convert_boundary_points_to_indices(x, y)
rng = StableRNG(456)
tri = triangulate(points; boundary_nodes, rng)
refine!(tri; custom_constraint, rng)
fig, ax, sc = triplot(tri)
fig

using Downloads
using DelimitedFiles
boundary_url = "https://gist.githubusercontent.com/DanielVandH/13687b0918e45a416a5c93cd52c91449/raw/a8da6cdc94859fd66bcff85a2307f0f9cd57a18c/boundary.txt"
boundary_dir = Downloads.download(boundary_url)
boundary = readdlm(boundary_dir, skipstart=6)
boundary_points = [(boundary[i, 1], boundary[i, 2]) for i in axes(boundary, 1)]
reverse!(boundary_points)

boundary_nodes, points = convert_boundary_points_to_indices(boundary_points)
rng = StableRNG(789)
tri = triangulate(points; boundary_nodes, rng)
fig, ax, sc = triplot(tri)
fig

A = get_area(tri)
refine!(tri; min_angle=30.0, max_area=0.001A, rng)

fig, ax, sc = triplot(tri)
fig

stats = statistics(tri)
angles = first.(get_all_stat(stats, :angles)) # the first is the smallest
fig, ax, sc = scatter(rad2deg.(angles))
hlines!(ax, [30.0], color = :red, linewidth = 4)
fig

boundary_nodes, points = convert_boundary_points_to_indices(boundary_points)
rng = StableRNG(789)
tri = triangulate(points; boundary_nodes, rng)
refine!(tri; min_angle=18.73, max_area=0.001A, rng)
fig = Figure(fontsize = 43)
ax = Axis(fig[1, 1], width = 600, height = 400)
triplot!(tri)
ax = Axis(fig[1, 2], width = 600, height = 400)
stats = statistics(tri)
angles = first.(get_all_stat(stats, :angles)) # the first is the smallest
scatter!(ax, rad2deg.(angles))
hlines!(ax, [18.73], color = :red, linewidth = 4)
resize_to_layout!(fig)
fig

This page was generated using Literate.jl.